Files
NGO/viewer/node_modules/entities/lib/encode-trie.d.ts
T
2026-04-30 19:00:37 +00: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