@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
TypeScript
/* 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 { PartialTestResultCatCMSchema } from './partial';
import { JournalData as CommonJournalData, TestResultCommonSchema } from '../common';
import { TestData as PartialCatCMTestData } from './partial';
import { TestData as CommonTestData } from '../common';
import { Manoeuvres as PartialCatCManoeuvres } from './partial';
import { Candidate as PartialCatCMCandidate } from './partial';
import { Candidate as CommonCandidate } from '../common/index';
import { VehicleDetails as PartialCatCMVehicleDetails } from './partial';
import { JournalData as PartialCatCMJournalData } from '../CM/partial';
export declare namespace CatCMUniqueTypes {
type TestResult = PartialTestResultCatCMSchema & TestResultCommonSchema;
type TestData = PartialCatCMTestData & CommonTestData;
type Manoeuvres = PartialCatCManoeuvres;
type JournalData = PartialCatCMJournalData & CommonJournalData;
type Candidate = PartialCatCMCandidate & CommonCandidate;
type VehicleDetails = PartialCatCMVehicleDetails;
}