8 lines
207 B
Plaintext
8 lines
207 B
Plaintext
import type Context from '../Context';
|
|
export default class Search {
|
|
private globalSearch;
|
|
constructor(context: Context);
|
|
set(value: string, scope?: string[]): void;
|
|
remove(): void;
|
|
}
|