export default interface InventoryItemUpdateRequest {
    title?: string;
    sku: string;
    id: string;
}
