Adjust type for PIS code - should be string vs number.

This commit is contained in:
Fred Boniface 2024-02-03 21:22:37 +00:00
parent 0a60efae8b
commit 5165bce5a8
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -6,7 +6,7 @@ export interface OB_Pis_SimpleObject {
}
export interface OB_Pis_FullObject {
code: number;
code: string;
crs: string[];
tiploc?: string[];
}