Local search for apps

This commit is contained in:
unknown
2021-09-06 12:24:01 +02:00
parent 8521995758
commit 6ae6c58f4c
14 changed files with 297 additions and 4751 deletions

View File

@@ -0,0 +1,5 @@
export interface SearchResult {
isLocal: boolean;
prefix: null | string;
query: string;
}

View File

@@ -8,4 +8,5 @@ export * from './Category';
export * from './Notification';
export * from './Config';
export * from './Forms';
export * from './Query';
export * from './Query';
export * from './SearchResult';