UNPKG

@theaimegroup/aime-component-library

Version:

AIME Component Library

14 lines (13 loc) 369 B
import { Col } from "../intefaces/interfaces"; interface AddEditFormColProps { title: string; tablename: string; col: Col[]; noOfCols: number; formdata: any; isUpdate: boolean; close: () => void; refetch: () => void; } declare function AddEditFormCol(props: AddEditFormColProps): JSX.Element; export default AddEditFormCol;