Add 'via' field to staffLdb Types

This commit is contained in:
Fred Boniface 2023-08-07 10:25:31 +01:00
parent f5d140b6b5
commit 27f2e16fb4
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -43,4 +43,5 @@ export interface TrainServices {
export interface ServiceLocation {
tiploc: string;
name: string;
via?: string;
}