1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00
flame/client/src/interfaces/SearchResult.ts
2021-10-06 12:01:07 +02:00

9 lines
160 B
TypeScript

import { Query } from './Query';
export interface SearchResult {
isLocal: boolean;
isURL: boolean;
sameTab: boolean;
search: string;
query: Query;
}