@samatawy/diagrams
    Preparing search index...

    Interface SpecificOptions

    interface SpecificOptions {
        label: string;
        readonly?: boolean;
        datatype?: "string" | "number" | "boolean" | "enum";
        options?:
            | Record<string, { label: string; value: unknown }>
            | ((node: INode) => Record<string, { label: string; value: unknown }>);
    }
    Index

    Properties

    label: string
    readonly?: boolean
    datatype?: "string" | "number" | "boolean" | "enum"
    options?:
        | Record<string, { label: string; value: unknown }>
        | ((node: INode) => Record<string, { label: string; value: unknown }>)