export interface CustomOrderListState {
  customOrderList: { data: any; loader: boolean };
  customOrderDescription: { data: {}; loader: boolean };
  customOrderId: number | null;
  loader: boolean;
}
// export interface SkuValues {
//   sku_id: any;
//   sku_name: string;
//   sku_code: string;
//   sku_quantity: number;
//   sku_unit: any;
//   sku_mrp: string;
//   sku_expiry_duration: number;
//   sku_bulk_qty_limit: number;
//   sku_status: string;
// }

// export interface ProductValues {
//   product_id: number;
//   product_name: string;
//   product_type: string;
//   item_code: string;
//   item_description: string;
//   images: string[];
//   skus: SkuValues[];
// }

// Redux
// export interface CustomOrderDescriptionState {
//   productDescription: { data: {}; loader: boolean };
//   productDescriptionId: number | null;
// }
// export interface CustomOrderState {
//   CustomOrderList: { data: any; loader: boolean };
// }
