ic-reactor
    Preparing search index...

    Interface RecursiveArg

    interface RecursiveArg {
        type: "recursive";
        name: string;
        extract: () => VariantArg<types.IDL.Type<any>>;
        maxLength?: number;
        minLength?: number;
        label: string;
        validate: (value: any) => string | boolean;
        defaultValue?: any;
        defaultValues?: any[] | Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    type: "recursive"
    name: string
    extract: () => VariantArg<types.IDL.Type<any>>
    maxLength?: number
    minLength?: number
    label: string
    validate: (value: any) => string | boolean
    defaultValue?: any
    defaultValues?: any[] | Record<string, any>