style updates

This commit is contained in:
Hayden 2022-09-03 01:17:57 -08:00
parent f4f7123073
commit 6bbe62823d
19 changed files with 337 additions and 107 deletions

View file

@ -1,4 +1,5 @@
import { BaseAPI, UrlBuilder } from '../base';
import { Item } from './items';
import { Details, OutType, Results } from './types';
export type LocationCreate = Details;
@ -6,6 +7,8 @@ export type LocationCreate = Details;
export type Location = LocationCreate &
OutType & {
groupId: string;
items: Item[];
itemCount: number;
};
export type LocationUpdate = LocationCreate;