UNPKG

@whitesev/pops

Version:

弹窗库,包含了alert、confirm、prompt、drawer、folder、loading、iframe、panel、tooltip、searchSuggestion、rightClickMenu组件

17 lines (15 loc) 343 B
import type { PopsPanelGeneralConfig } from "./components-common"; /** * pops.panel的 own * 自定义的 */ export interface PopsPanelOwnConfig extends PopsPanelGeneralConfig<PopsPanelOwnConfig> { /** * 组件类型 */ type: "own"; /** * 生成<li>标签元素 */ createLIElement($li: HTMLLIElement): HTMLLIElement; }