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.

10 lines 546 B
import { Dispatch, SetStateAction } from 'react'; import { T_ProviderProps } from 'src/common/client/types'; import { T_BenefitsConfigurationFormProps } from '../props'; import { T_TemporaryBenefits } from '../types'; export type T_BenefitsConfigurationContextTypes = { benefits?: T_TemporaryBenefits; setBenefits: Dispatch<SetStateAction<T_TemporaryBenefits>>; } & T_BenefitsConfigurationFormProps; export type T_BenefitsConfigurationProviderProps = T_ProviderProps & T_BenefitsConfigurationFormProps; //# sourceMappingURL=index.d.ts.map