Expand database Service document
This commit is contained in:
parent
92ec756bf8
commit
c3094ffcbb
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@owlboard/ts-types",
|
||||
"version": "0.1.8",
|
||||
"version": "0.1.9",
|
||||
"description": "Declares Typescript types for the OwlBoard stack",
|
||||
"main": "index.ts",
|
||||
"scripts": {
|
||||
|
@ -3,6 +3,10 @@ interface Stop {
|
||||
wttDeparture?: string | null;
|
||||
publicArrival?: string | null;
|
||||
wttArrival?: string | null;
|
||||
pass?: string | null;
|
||||
platform?: string | null;
|
||||
arrLine?: string | null;
|
||||
depLine?: string | null;
|
||||
isPublic: boolean;
|
||||
tiploc: string;
|
||||
}
|
||||
@ -28,6 +32,10 @@ interface Service {
|
||||
daysRun: string[];
|
||||
stops: Stop[];
|
||||
vstp: boolean;
|
||||
firstClass: boolean;
|
||||
catering: boolean;
|
||||
cateringType?: string[] | null;
|
||||
sleeper: boolean;
|
||||
}
|
||||
|
||||
export { Stop, Service, SimpleService }
|
Loading…
Reference in New Issue
Block a user