Frodo Library - v4.0.0-10
    Preparing search index...

    Type Alias CustomNodeProperty

    type 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";
    }
    Index

    Properties

    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"