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

9 lines
142 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-09-06 12:47:17 +02:00
sameTab: boolean;
search: string;
query: Query;
2021-09-06 12:24:01 +02:00
}