All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
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;
|
|
}
|