UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

19 lines 483 B
import { FieldValidationError } from './fieldValidationError'; import { Schema } from './schema'; export interface SchemaResult { errors?: { [key: string]: FieldValidationError; }; schema?: { [key: string]: Schema; }; } export declare namespace SchemaResult { const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=schemaResult.d.ts.map