1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-03 18:05:18 +02:00

Live search for apps

This commit is contained in:
unknown 2021-09-06 12:47:17 +02:00
parent 6ae6c58f4c
commit fac280ff0a
3 changed files with 32 additions and 18 deletions

View file

@ -1,5 +1,8 @@
import { Query } from './Query';
export interface SearchResult {
isLocal: boolean;
prefix: null | string;
query: string;
sameTab: boolean;
search: string;
query: Query;
}