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.

7 lines 402 B
import { T_PartialLoyaltyProgramConfig } from 'src/modules/loyaltyProgram/common/client/types'; import { I_Company } from '../../backend/responses/schemas'; export type T_CustomCompanyData = { loyaltyProgramConfig?: T_PartialLoyaltyProgramConfig; } | undefined; export type T_CompanyLoyaltyProgramConfigUpdatedEventData = Pick<I_Company, 'loyaltyProgramConfig'>; //# sourceMappingURL=index.d.ts.map