Type Alias Trie<T>

Trie<T>: {
    data?: T;
    end?: true;
    needBoundary?: true;
} & Record<string, any>

Type Parameters

  • T