Type Alias CustomNodeProperty

CustomNodeProperty: {
    defaultValue?:
        | string
        | number
        | boolean
        | Record<string, string>
        | string[]
        | number[];
    description: string;
    multivalued: boolean;
    options?: Record<string, string>;
    required: boolean;
    title: string;
    type: "NUMBER" | "STRING" | "OBJECT" | "BOOLEAN";
}

Type declaration

  • OptionaldefaultValue?: string | number | boolean | Record<string, string> | string[] | number[]
  • description: string
  • multivalued: boolean
  • Optionaloptions?: Record<string, string>
  • required: boolean
  • title: string
  • type: "NUMBER" | "STRING" | "OBJECT" | "BOOLEAN"