wip: searchquery

This commit is contained in:
Reto Brunner 2024-02-15 23:29:41 +01:00
commit 68ba13ca12
6 changed files with 13 additions and 11 deletions

6
shared/types/storage.ts Normal file
View file

@ -0,0 +1,6 @@
export type SearchQuery = {
searchTerm: string;
networkUuid: string;
channelName: string;
offset: number;
};