hexo/node_modules/entities/lib/encode-trie.d.ts

8 lines
371 B
TypeScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
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>;
2023-09-25 15:58:56 +08:00
//# sourceMappingURL=encode-trie.d.ts.map