Files
SerpentRace/SerpentRace_Backend/src/Application/DTOs/SearchDto.ts
T

14 lines
257 B
TypeScript

export interface SearchQuery {
query: string;
limit?: number;
offset?: number;
}
export interface SearchResult<T> {
results: T[];
totalCount: number;
hasMore: boolean;
searchQuery: string;
searchType: 'users' | 'organizations' | 'decks';
}