UNPKG

@enable-tech/shared-types

Version:

This package represents the single source of truth of the Types being used in the codebase (front-end and back-end) of enable.tech, It is an organization-scoped package. So, all the development teams belonging to it can participate to enhance it.

13 lines 543 B
import { I_TempCustomer } from 'src/modules/customer/backend/responses/schemas'; import { I_3PLDeliveryOrder, I_Shipment } from '../../backend/responses/schemas'; export type T_ShipmentStatusTableDataContentProps = { shipment: I_Shipment; refetch: VoidFunction; }; export type T_DeliveriesStatusTableDataContentProps = { deliveryOrder: I_3PLDeliveryOrder; refetch: VoidFunction; }; export declare const keysToPick: T_TempCustomerKeys[]; export type T_TempCustomerKeys = keyof I_TempCustomer; //# sourceMappingURL=index.d.ts.map