json-joy
json-joy copied to clipboard
Why are 'child' and 'container' always undefined in JsonNode?
export interface JsonNode<View = unknown> extends Identifiable { name(): string; view(): View; children(callback: (node: JsonNode) => void): void; child?(): JsonNode | undefined; container(): JsonNode | undefined; api: undefined | unknown; }