export interface IDtoVerifyResult { isOk: boolean; hasUnknownKey?: boolean; errors?: { key: string; paths: string[]; msg?: string; }[]; msg?: string; } /** * 验证数据是否符合 DTO 定义 */ export declare function dtoVerify(dtoDefine: any, data: any, options?: { allowUnknownKey?: boolean; }): { isOk: boolean; msgs: string[] | undefined; }; //# sourceMappingURL=dtoVerify.d.ts.map