TypeDoc API - v0.28.1

    Interface GlobArrayDeclarationOption

    interface GlobArrayDeclarationOption {
        help: () => string;
        name: string;
        type: GlobArray;
        configFileOnly?: boolean;
        defaultValue?: readonly string[];
        validate?: (value: GlobString[]) => void;
    }

    Hierarchy (View Summary, Expand)

    Index

    Properties

    help: () => string

    The help text to be displayed to the user when --help is passed.

    This may be a string, which will be presented directly, or a function, which will be called so that option help can be translated into the user specified locale.

    name: string

    The option name.

    type: GlobArray

    The parameter type, used to convert user configuration values into the expected type. If not set, the type will be a string.

    configFileOnly?: boolean

    If set, this option will be omitted from --help, and attempting to specify it on the command line will produce an error.

    defaultValue?: readonly string[]

    If not specified defaults to an empty array. If specified, globs are relative to cwd when TypeDoc is run.

    validate?: (value: GlobString[]) => void

    An optional validation function that validates a potential value of this option. The function must throw an Error if the validation fails and should do nothing otherwise.

    MMNEPVFCICPMFPCPTTAAATR