Interface IApiOption

API定义

interface IApiOption {
    docs?: IDocOptions;
    forceGroup?: boolean;
    groups?: Record<string, string | IGroupInfoOpt>;
    info?: IApiOptionInfo;
    internalError?: ((msg) => Error);
    invalidParameterError?: ((msg) => Error);
    missingParameterError?: ((msg) => Error);
    path?: string;
}

Properties

forceGroup?: boolean
groups?: Record<string, string | IGroupInfoOpt>
internalError?: ((msg) => Error)

Type declaration

    • (msg): Error
    • Parameters

      • msg: string

      Returns Error

invalidParameterError?: ((msg) => Error)

Type declaration

    • (msg): Error
    • Parameters

      • msg: string

      Returns Error

missingParameterError?: ((msg) => Error)

Type declaration

    • (msg): Error
    • Parameters

      • msg: string

      Returns Error

path?: string

Generated using TypeDoc