Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 683 Bytes

Node.md

File metadata and controls

28 lines (15 loc) · 683 Bytes

@kamilmielnik/trie


@kamilmielnik/trie / Node

Interface: Node

Defined in: types.ts:5

Keys are single characters (strings of length 1) or "wordEnd". "wordEnd: true" indicates that keys of all parent Nodes make a valid word when joined together.

Extends

  • Record<string, Node | true | undefined>

Indexable

[key: string]: undefined | true | Node

Properties

wordEnd?

optional wordEnd: true

Defined in: types.ts:6