UNPKG

antd-mobile

Version:

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

15 lines (14 loc) 385 B
import * as React from 'react'; import tsPropsType from './PropsType'; export default class Drawer extends React.Component<tsPropsType, any> { static propTypes: { children: React.Requireable<any>; }; static defaultProps: { position: string; onOpenChange: () => void; drawerWidth: number; }; drawer: any; render(): JSX.Element; }