Interface ISchemaCheckResult

interface ISchemaCheckResult {
    invalidParamaterTypes?: string[];
    invalidParamaters?: string[];
    message: string;
    missingParamaters?: string[];
    ok: boolean;
    value: any;
}

Properties

invalidParamaterTypes?: string[]

错误的参数类型列表

invalidParamaters?: string[]

错误的参数列表

message: string

如果失败,此项为出错信息

missingParamaters?: string[]

缺少的参数列表

ok: boolean

是否成功

value: any

结果

Generated using TypeDoc