版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 lines
364 B

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