Files
firefrost-website/node_modules/htmlparser2/node_modules/entities/lib/encode-trie.d.ts
2026-04-02 18:39:00 -05:00

8 lines
364 B
TypeScript

export declare const getCodePoint: (str: string, index: number) => number;
export declare function encodeHTMLTrieRe(regExp: RegExp, str: string): string;
export interface TrieNode {
value?: string;
next?: Map<number, TrieNode>;
}
export declare function getTrie(map: Record<string, string>): Map<number, TrieNode>;
//# sourceMappingURL=encode-trie.d.ts.map