UNPKG

react-admin-kit

Version:

A react based UI components for admin system

18 lines (17 loc) 1.14 kB
/// <reference types="react" /> import type { EnableDeleteType, InnerRefType, MyProTableOriginType, MyProTableSelfType, MyProTableType, TableAlertOptionType, TableColumnOriginType, TableColumnSelfType, TableColumnTypeBase } from './types'; export declare const FORM_TYPE_LOCALE: { new: string; edit: string; read: string; }; declare const ProTable: (props: MyProTableType) => import("react/jsx-runtime").JSX.Element; export default ProTable; export declare const MyProTableSelfTypeComponent: React.FC<MyProTableSelfType>; export declare const MyProTableOriginTypeComponent: React.FC<MyProTableOriginType>; export declare const InnerRefTypeComponent: React.FC<InnerRefType>; export declare const TableAlertOptionTypeComponent: React.FC<TableAlertOptionType>; export declare const TableColumnTypeBaseComponent: React.FC<TableColumnTypeBase<any, 'text'>>; export declare const TableColumnSelfTypeComponent: React.FC<TableColumnSelfType<any, 'text'>>; export declare const TableColumnOriginTypeComponent: React.FC<TableColumnOriginType<any, 'text'>>; export declare const EnableDeleteTypeComponent: React.FC<EnableDeleteType>;