UNPKG

@tanishiking/aho-corasick

Version:

TypeScript implementation of the Aho-Corasick algorithm for efficient string matching

8 lines (7 loc) 241 B
import { Interval } from './interval/interval'; export declare class Emit extends Interval { readonly start: number; readonly end: number; readonly keyword: string; constructor(start: number, end: number, keyword: string); }