UNPKG

shineout

Version:

A components library for React

10 lines (9 loc) 276 B
import Drawer from './drawer'; import Modal from '../modal'; type RefDrawer = typeof Drawer; export interface DrawerComponent extends RefDrawer { displayName: string; Submit: typeof Modal.Submit; } declare const DrawerComp: DrawerComponent; export default DrawerComp;