UNPKG

@autorest/powershell

Version:
10 lines 324 B
export declare class TrieNode { value: string; children: Map<string, TrieNode>; isEnd: boolean; constructor(value: string); addChild(child: TrieNode | string): void; hasChild(child: TrieNode | string): boolean; getChild(key: string): TrieNode | undefined; } //# sourceMappingURL=TrieNode.d.ts.map