mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2025-02-18 05:30:26 +00:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
export declare class KeyTrie<K> {
|
|
private readonly weakness;
|
|
private weak?;
|
|
private strong?;
|
|
private data?;
|
|
constructor(weakness: boolean);
|
|
lookup<T extends any[]>(...array: T): K;
|
|
lookupArray<T extends any[]>(array: T): K;
|
|
private getChildTrie;
|
|
}
|