working
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
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
|
||||
Reference in New Issue
Block a user