UNPKG

@tanishiking/aho-corasick

Version:

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

8 lines (7 loc) 191 B
export declare class Interval { readonly start: number; readonly end: number; constructor(start: number, end: number); equals(other: Interval): boolean; size(): number; }