@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.
11 lines • 399 B
TypeScript
import { DetailedHTMLProps, ReactNode, TdHTMLAttributes } from 'react';
export interface I_CommonRowProps {
description?: ReactNode;
price?: ReactNode;
quantity?: ReactNode;
discount?: ReactNode;
notes?: ReactNode;
total?: ReactNode;
descriptionProps?: DetailedHTMLProps<TdHTMLAttributes<HTMLTableCellElement>, HTMLTableCellElement>;
}
//# sourceMappingURL=index.d.ts.map