UNPKG

tdesign-miniprogram

Version:
31 lines (30 loc) 828 B
export interface TdPopoverProps { closeOnClickOutside?: { type: BooleanConstructor; value?: boolean; }; content?: { type: StringConstructor; value?: string; }; placement?: { type: StringConstructor; value?: 'top' | 'left' | 'right' | 'bottom' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'left-top' | 'left-bottom' | 'right-top' | 'right-bottom'; }; showArrow?: { type: BooleanConstructor; value?: boolean; }; theme?: { type: StringConstructor; value?: 'dark' | 'light' | 'brand' | 'success' | 'warning' | 'error'; }; visible?: { type: BooleanConstructor; value?: boolean; }; defaultVisible?: { type: BooleanConstructor; value?: boolean; }; }