@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.
15 lines • 536 B
TypeScript
import { T_SortType, T_PaginationKeys } from 'src/common/backend/parameters';
import { T_Months } from 'src/common/client/types';
export type T_SearchTypeQueryParams = 'name' | 'type' | 'internalName' | 'all';
export type T_MenuQueryParams = {
search_key?: string;
sort_type?: T_SortType;
search_type?: T_SearchTypeQueryParams;
month?: T_Months;
branch?: string;
company?: string;
branches?: string;
brandId?: string;
isMaster?: 'yes' | 'no';
} & T_PaginationKeys;
//# sourceMappingURL=index.d.ts.map