import { Restaurant, Warehouse } from '~backend/business/business.interface'; export declare enum InventoryLocationType { restaurant = "restaurant", warehouse = "warehouse" } export interface InventoryLocation { name: string; type: InventoryLocationType; acceptRequest: boolean; dbName: string; doc: Warehouse | Restaurant; }