shineout
Version:
A components library for React
14 lines (13 loc) • 406 B
TypeScript
import IPopover from './popover';
import IConfirm from './confirm';
type RefConfirm = typeof IConfirm;
export interface ConfirmComponent extends RefConfirm {
displayName: string;
}
type RefPopover = typeof IPopover;
export interface PopoverComponent extends RefPopover {
displayName: string;
Confirm: ConfirmComponent;
}
declare const PopoverComp: PopoverComponent;
export default PopoverComp;