thelounge/shared/types/storage.ts
2024-04-21 15:11:51 +02:00

13 lines
219 B
TypeScript

import {SharedMsg} from "./msg";
export type SearchQuery = {
searchTerm: string;
networkUuid: string;
channelName: string;
offset: number;
};
export type SearchResponse = SearchQuery & {
results: SharedMsg[];
};