UNPKG

antd-curd

Version:

基于 ant design 、 dva 的增删改查页面组件

11 lines (10 loc) 759 B
/// <reference types="react" /> import { DrawerProps } from 'antd/lib/drawer'; import { PopupProps } from '../DetailModal/index'; export declare type CustomModalProps = Omit<DrawerProps, 'title' | 'visible' | 'onOk' | 'onClose' | 'afterClose'>; export interface DetailDrawerProps extends PopupProps { drawerProps?: CustomModalProps; } declare function DetailDrawer(props: DetailDrawerProps): JSX.Element; declare const _default: import("_antd@3.26.3@antd/lib/form/interface").ConnectedComponentClass<typeof DetailDrawer, Pick<DetailDrawerProps, "loading" | "title" | "setItemsConfig" | "onOk" | "drawerProps" | "itemsLayout" | "getFormInstance" | "mode" | "onClose" | "visible" | "afterClose" | "wrappedComponentRef">>; export default _default;