@salesforce/core
    Preparing search index...

    Type Alias ConfigPropertyMetaInput

    Config property input validation

    type ConfigPropertyMetaInput = {
        failedMessage: string | ((value: ConfigValue) => string);
        validator: (value: ConfigValue) => boolean;
    }
    Index
    failedMessage: string | ((value: ConfigValue) => string)

    The message to return in the error if the validation fails.

    validator: (value: ConfigValue) => boolean

    Tests if the input value is valid and returns true if the input data is valid.

    Type Declaration