UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 488 B
import { MigrationCheckResultStruct } from './MigrationCheckResultStruct'; /** Check Migration result */ export interface MigrationCheckStruct { /** List of aliases */ alias?: string[]; /** List of errors */ error?: MigrationCheckResultStruct[]; /** List of filters */ filter?: string[]; /** List of forwards */ forward?: string[]; /** List of warnings */ warning?: MigrationCheckResultStruct[]; } //# sourceMappingURL=MigrationCheckStruct.d.ts.map