This commit is contained in:
Nathan Bierema 2023-01-02 09:06:06 -05:00
parent e37af54c1b
commit 438d08dd7c

View File

@ -175,7 +175,7 @@ const defaultOptions: Options = {
export interface Node { export interface Node {
name: string; name: string;
children?: Node[] | null; children?: this[] | null;
value?: unknown; value?: unknown;
} }