import { WindowOptions } from "./WindowOptions"; /** * 窗口属性 */ export interface WindowProps { /** * 窗口唯一标识 */ id: string; /** * 窗口标题 */ title?: string; /** * 窗口样式类 */ class?: string; /** * 窗口活动范围距离底部的距离 */ bottom?: number; /** * 支持自定义位置和大小 */ options?: WindowOptions; }