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.

18 lines 513 B
import { FieldErrors } from 'react-hook-form'; import { E_Mode } from 'src/common/client/enums'; import { T_QueryStatus } from 'src/common/client/types'; export interface I_CustomSubmitButtonProps { addStatus?: T_QueryStatus; updateStatus?: T_QueryStatus; errors: FieldErrors; mode?: E_Mode; disabledBtn?: boolean; style?: boolean; text?: string; type?: string; onClick?: any; className?: string; w?: any; activeStyle?: string; } //# sourceMappingURL=index.d.ts.map