1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-27 14:59:37 +02:00
flame/client/src/interfaces/SearchResult.ts

10 lines
160 B
TypeScript
Raw Normal View History

2021-09-06 12:47:17 +02:00
import { Query } from './Query';
2021-09-06 12:24:01 +02:00
export interface SearchResult {
isLocal: boolean;
2021-10-06 12:01:07 +02:00
isURL: boolean;
2021-09-06 12:47:17 +02:00
sameTab: boolean;
search: string;
query: Query;
2021-09-06 12:24:01 +02:00
}