summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/tldts/dist/types/src/data/trie.d.ts
blob: c7c14181d1ce2597e1e01a9ccee3e9c6cc6e43df (plain)
1
2
3
4
5
6
7
8
export interface ITrie {
    $: number;
    succ: {
        [label: string]: ITrie;
    };
}
export declare const exceptions: ITrie;
export declare const rules: ITrie;