UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

14 lines (13 loc) 392 B
import * as React from 'react'; import tsPropsType from './PropsType'; export default class Drawer extends React.Component<tsPropsType, any> { static propTypes: { prefixCls: React.Requireable<any>; enableDragHandle: React.Requireable<any>; }; static defaultProps: { prefixCls: string; enableDragHandle: boolean; }; render(): JSX.Element; }