Plugins

Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0

SchematicNodeConfigProps

Props passed to a schematic node configuration component.

Import

import type { SchematicNodeConfigProps } from "@dartwic/interface-sdk/schematic-nodes";

Declaration

export interface SchematicNodeConfigProps {
    data?: any;
    updateNode?: (nextData: any) => void;
    defaults?: any;
}

Members

NameTypeRequirementDescription
dataanyOptional
updateNode(nextData: any) => voidOptional
defaultsanyOptional