y-taro-ui
Version:
基于taro的表单解决方案 & 基础组件
15 lines (14 loc) • 492 B
TypeScript
import React from 'react';
import { InternalCSSTransitionProps } from '../InternalCSSTransition';
import './index.less';
export declare type BackDropProps = InternalCSSTransitionProps & {
style?: React.CSSProperties;
className?: string;
timeout?: number;
maskClosable?: boolean;
children?: React.ReactNode;
visable?: boolean;
onClose?: () => void;
};
export declare const BackDrop: React.NamedExoticComponent<BackDropProps>;
export default BackDrop;