tdesign-react
Version:
TDesign Component for React
11 lines (10 loc) • 406 B
TypeScript
import React from 'react';
import { TdDrawerProps, DrawerEventSource } from './type';
import { StyledProps } from '../common';
export declare const CloseTriggerType: {
[key: string]: DrawerEventSource;
};
export interface DrawerProps extends TdDrawerProps, StyledProps {
}
declare const Drawer: React.ForwardRefExoticComponent<DrawerProps & React.RefAttributes<HTMLDivElement>>;
export default Drawer;