@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.
18 lines • 486 B
TypeScript
import { T_PaginationKeys } from 'src/common/backend/parameters';
export type T_GetCustomersQueryParams = {
loyaltyCardStatuses?: any[];
latestContactChannels?: any[];
contactChannels?: any[];
searchKey?: any[];
searchType?: any[];
sortType?: any[];
month?: string;
} & T_PaginationKeys;
export type T_UrlParams = {
customerId?: string;
phone?: string;
};
export type T_QueryParams = {
countryCode?: string;
};
//# sourceMappingURL=index.d.ts.map