UNPKG

276 BTypeScriptView Raw
1import { Search } from "./types/search";
2/**
3 * SearchList contains all current searches.
4 */
5export declare class SearchList extends Array<Search> {
6 /**
7 * Scan runs all active searches against the stream text that has accumulated so far.
8 */
9 scan(): void;
10}