json-joy icon indicating copy to clipboard operation
json-joy copied to clipboard

Why are 'child' and 'container' always undefined in JsonNode?

Open 534254884 opened this issue 8 months ago • 1 comments

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; }

534254884 avatar Jun 12 '24 12:06 534254884