mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-06-05 22:09:20 +02:00
8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
declare type EncodeTrieNode = string | {
|
|
v?: string;
|
|
n: number | Map<number, EncodeTrieNode>;
|
|
o?: string;
|
|
};
|
|
declare const _default: Map<number, EncodeTrieNode>;
|
|
export default _default;
|
|
//# sourceMappingURL=encode-html.d.ts.map
|