Fix bug in staffLdb type

This commit is contained in:
Fred Boniface 2023-08-02 21:24:12 +01:00
parent cb743fc2ca
commit e96f0e3bed
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@owlboard/ts-types", "name": "@owlboard/ts-types",
"version": "0.0.4", "version": "0.0.5",
"description": "Declares Typescript types for the OwlBoard stack", "description": "Declares Typescript types for the OwlBoard stack",
"main": "index.ts", "main": "index.ts",
"scripts": { "scripts": {

View File

@ -24,7 +24,7 @@ export interface TrainServices {
serviceIsSupressed?: string; serviceIsSupressed?: string;
origin: ServiceLocation[]; origin: ServiceLocation[];
destination: ServiceLocation[]; destination: ServiceLocation[];
isCancelled: string; isCancelled?: string;
cancelReason?: string; cancelReason?: string;
delayReason?: string; delayReason?: string;
arrivalType?: string; arrivalType?: string;