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
| Name | Type | Requirement | Description |
|---|---|---|---|
data | any | Optional | |
updateNode | (nextData: any) => void | Optional | |
defaults | any | Optional |