UNPKG

@dvsa/mes-test-schema

Version:

Domain model for data associated with tests administered by the Driving Examiner Services project

31 lines (23 loc) 1.23 kB
/* tslint:disable */ /** * This file was initially generated by json-schema-to-typescript. * IT HAS SINCE BEEN MODIFIED BY HAND. DO NOT REGENERATE */ // Always follow the order of the properties that are in partial.d.ts import { PartialTestResultCatDMSchema } from './partial'; import { JournalData as CommonJournalData, TestResultCommonSchema } from '../common'; import { TestData as PartialCatDMTestData } from './partial'; import { TestData as CommonTestData } from '../common'; import { Manoeuvres as PartialCatDManoeuvres } from './partial'; import { Candidate as PartialCatDMCandidate } from './partial'; import { Candidate as CommonCandidate } from '../common/index'; import { VehicleDetails as PartialCatDMVehicleDetails } from './partial'; import { JournalData as PartialCatDMJournalData } from "../D1M/partial"; export declare namespace CatDMUniqueTypes { type TestResult = PartialTestResultCatDMSchema & TestResultCommonSchema; type TestData = PartialCatDMTestData & CommonTestData; type Manoeuvres = PartialCatDManoeuvres; type JournalData = PartialCatDMJournalData & CommonJournalData; type Candidate = PartialCatDMCandidate & CommonCandidate; type VehicleDetails = PartialCatDMVehicleDetails; }