Update simple PIS Object

This commit is contained in:
Fred Boniface 2023-11-29 23:25:58 +00:00
parent 94abc26717
commit 8f3501b095
2 changed files with 5 additions and 7 deletions

View File

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

@ -1,12 +1,10 @@
export interface OB_Pis_SimpleObject { export interface OB_Pis_SimpleObject {
code: number; code: number;
match: "full" | "partial"; toc: string;
skip?: "first" | "last"; skipCount: number;
skipCount?: number; skipType?: string;
msg?: string;
} }
/*
/* NOT IN USE YET
export interface OB_Pis_FullObject { export interface OB_Pis_FullObject {
code: number; code: number;
crs: string[]; crs: string[];