mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-27 23:09:35 +02:00
6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
|
export interface SearchResult {
|
||
|
isLocal: boolean;
|
||
|
prefix: null | string;
|
||
|
query: string;
|
||
|
}
|