UNPKG

text-stream-search

Version:

Searches for occurrences of a given search term in Node.js text streams

11 lines (10 loc) 279 B
import { Search } from "./types/search.js"; /** * SearchList contains all current searches. */ export declare class SearchList extends Array<Search> { /** * Scan runs all active searches against the stream text that has accumulated so far. */ scan(): void; }