LocationName optional in Location {}

This commit is contained in:
Fred Boniface 2023-08-07 11:39:54 +01:00
parent 27f2e16fb4
commit 5d947e5ad3
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.7", "version": "0.0.8",
"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

@ -42,6 +42,6 @@ export interface TrainServices {
export interface ServiceLocation { export interface ServiceLocation {
tiploc: string; tiploc: string;
name: string; name?: string;
via?: string; via?: string;
} }