ic-reactor
    Preparing search index...

    Interface BlobArg

    interface BlobArg {
        type: "blob";
        field: AllArgTypes<types.IDL.Type<any>>;
        defaultValue: [];
        maxLength?: number;
        minLength?: number;
        label: string;
        validate: (value: any) => string | boolean;
        defaultValues?: any[] | Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

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