antd-table-editable-af
Version:
A editable table based on antd table
8 lines (7 loc) • 307 B
TypeScript
import { PopoverProps } from 'antd';
import React from 'react';
interface PopoverValidatorProps extends Omit<PopoverProps, 'open' | 'content'> {
content?: (errors: React.ReactNode[]) => React.ReactNode;
}
declare const PopoverValidator: React.FC<PopoverValidatorProps>;
export default PopoverValidator;