mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-02 20:00:05 +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
|