From 099d25c6b2d10a3dc89d1f708888bccbaed5a5b7 Mon Sep 17 00:00:00 2001 From: Daniel Searle Date: Thu, 4 Jul 2024 11:45:58 +0100 Subject: [PATCH] feat(CB2-12690): removed commented out code --- src/models/index.d.ts | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/src/models/index.d.ts b/src/models/index.d.ts index 0b16487..964fabf 100644 --- a/src/models/index.d.ts +++ b/src/models/index.d.ts @@ -33,43 +33,6 @@ interface IMOTConfig { templateId: string; } -// interface IActivity { -// id: string; -// activityType: "visit" | "wait"; -// testStationName: string; -// testStationPNumber: string; -// testStationEmail: string; -// testStationType: StationType; -// testerName: string; -// testerStaffId: string; -// startTime: string; -// endTime: string; -// waitReason: [string]; -// notes: string; -// } - -// interface ITestType { -// testTypeStartTimestamp: string; -// testTypeName: string; -// testResult: string; -// certificateNumber: string; -// testExpiryDate: number; -// testTypeEndTimeStamp: string; -// } -// -// interface ITestResults { -// testerStaffId: string; -// vrm: string; -// testStationPNumber: string; -// preparerId: string; -// numberOfSeats: number; -// testStartTimestamp: string; -// testEndTimestamp: string; -// testTypes: ITestType; -// vin: string; -// vehicleType: string; -// } - interface IInvokeConfig { params: { apiVersion: string; endpoint?: string }; functions: { testResults: { name: string }; testStations: { name: string; mock: string }; getActivities: { name: string } };