thelounge/shared/types/storage.ts

13 lines
219 B
TypeScript
Raw Normal View History

2024-03-01 18:28:24 +01:00
import {SharedMsg} from "./msg";
2024-02-15 23:29:41 +01:00
export type SearchQuery = {
searchTerm: string;
networkUuid: string;
channelName: string;
offset: number;
};
2024-03-01 18:28:24 +01:00
export type SearchResponse = SearchQuery & {
results: SharedMsg[];
};