import { BaseNodeType } from "./BaseNodeType" /** * A type that represents an untyped node type in the mobx-bonsai tree. * * @template TNode - The object type that represents the node's data structure. */ export type UntypedNodeType = BaseNodeType< TNode, "untyped", never, never, unknown >