Add OB_PIS_Full_Object type

This commit is contained in:
Fred Boniface 2023-11-30 21:35:46 +00:00
parent 2bab790cf5
commit 8409e28136
3 changed files with 3 additions and 4 deletions

View File

@ -12,6 +12,6 @@ export { Versions } from './src/owlboardApi/versions'
export { StaffLdb, NrccMessage, TrainServices, export { StaffLdb, NrccMessage, TrainServices,
ServiceLocation } from './src/owlboardApi/staffLdb' ServiceLocation } from './src/owlboardApi/staffLdb'
export { OB_TrainTT_service, OB_TrainTT_stopDetail } from './src/owlboardApi/trainTimetable' export { OB_TrainTT_service, OB_TrainTT_stopDetail } from './src/owlboardApi/trainTimetable'
export { OB_Pis_SimpleObject } from './src/owlboardApi/pis' export { OB_Pis_SimpleObject, OB_Pis_FullObject } from './src/owlboardApi/pis'
// Upstream API // Upstream API

View File

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

@ -4,10 +4,9 @@ export interface OB_Pis_SimpleObject {
skipCount: number; skipCount: number;
skipType?: string; skipType?: string;
} }
/*
export interface OB_Pis_FullObject { export interface OB_Pis_FullObject {
code: number; code: number;
crs: string[]; crs: string[];
tiploc?: string[]; tiploc?: string[];
} }
*/