@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 • 535 B
TypeScript
import { DetailedHTMLProps, HTMLAttributes } from 'react';
import { I_Field } from '../../backend/responses';
import { T_FalsyValue } from 'src/common/client/types';
export interface I_EnablePassFieldProps {
field: T_FalsyValue<I_Field>;
containerProps?: DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
labelProps?: DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
valueProps?: DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
}
//# sourceMappingURL=index.d.ts.map