mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
13 lines
428 B
TypeScript
13 lines
428 B
TypeScript
import { ItemDTO } from '@swagger/cat';
|
|
import { ShoppingCartItemDTO, BranchDTO } from '@swagger/checkout';
|
|
import { ActionType, PurchaseOption } from './store';
|
|
|
|
export interface PurchaseOptionsModalData {
|
|
processId: number;
|
|
type: ActionType;
|
|
items: Array<ItemDTO | ShoppingCartItemDTO>;
|
|
pickupBranch?: BranchDTO;
|
|
inStoreBranch?: BranchDTO;
|
|
preSelectOption?: { option: PurchaseOption; showOptionOnly?: boolean };
|
|
}
|