UNPKG

antd-mobile

Version:

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

12 lines (11 loc) 305 B
/// <reference types="react" /> import React from 'react'; import tsPropsType from './PropsType'; export default class Drawer extends React.Component<tsPropsType, any> { static defaultProps: { position: string; drawerWidth: number; }; drawer: any; render(): JSX.Element; }