ic-reactor
    Preparing search index...

    Interface PrincipalArg

    interface PrincipalArg {
        type: "principal";
        required: true;
        maxLength: number;
        minLength: number;
        defaultValue: string;
        label: string;
        validate: (value: any) => string | boolean;
        defaultValues?: any[] | Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    type: "principal"
    required: true
    maxLength: number
    minLength: number
    defaultValue: string
    label: string
    validate: (value: any) => string | boolean
    defaultValues?: any[] | Record<string, any>