Add booleans to OB_TrainTT_service type

This commit is contained in:
Fred Boniface 2024-04-15 20:50:15 +01:00
parent a3a4409e1d
commit 5b46b14607
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@owlboard/ts-types", "name": "@owlboard/ts-types",
"version": "1.0.0", "version": "1.0.1",
"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

@ -13,6 +13,9 @@ export interface OB_TrainTT_service {
stops: OB_TrainTT_stopDetail[]; stops: OB_TrainTT_stopDetail[];
pis?: OB_Pis_SimpleObject; pis?: OB_Pis_SimpleObject;
vstp: boolean; vstp: boolean;
firstClass: boolean;
catering: boolean;
sleeper: boolean;
} }
export interface OB_TrainTT_stopDetail { export interface OB_TrainTT_stopDetail {