import type { ButtonActions } from "../action-bar"; import type ButtonAction from "../action-bar/ButtonAction"; export default interface DialogActions { /** * 操作类 */ list: ButtonActions; /** * 关闭窗口的action */ close: ButtonAction; /** * 关闭问询 */ closeConfirm: () => Promise; }