@whitesev/pops
Version:
弹窗库,包含了alert、confirm、prompt、drawer、folder、loading、iframe、panel、tooltip、searchSuggestion、rightClickMenu组件
24 lines (22 loc) • 565 B
text/typescript
import type {
PopsTitleConfig,
PopsContentConfig,
PopsDragConfig,
PopsGeneralConfig,
PopsButtonConfig,
} from "../../../types/components";
import type { PopsGlobalButtonConfig, PopsButtonConfigAnyType } from "../../../types/button";
/**
* pops.alert
*/
export interface PopsAlertConfig extends PopsTitleConfig, PopsContentConfig, PopsDragConfig, PopsGeneralConfig {
/**
* 按钮配置
*/
btn?: Partial<PopsButtonConfig["btn"]> & {
/**
* 确定按钮
*/
ok?: Partial<PopsGlobalButtonConfig | PopsButtonConfigAnyType>;
};
}