linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
13 lines (12 loc) β’ 378 B
TypeScript
import { FC } from 'react';
interface IOpetateProps {
record: Record<string, any>;
rowKey?: string;
handleAdd?: (row?: any, addInChildren?: boolean) => void;
handleDelete?: (rowKey?: string) => void;
options?: string[];
getLength?: number;
quickOpetateClearAll?: boolean;
}
declare const QuickOpetate: FC<IOpetateProps>;
export default QuickOpetate;