/** * 窗口管理API */ import type { ApiResponse, WindowBoundsOptions } from "../types/index.js"; import { BaseAPI } from "./base.js"; export declare class WindowAPI extends BaseAPI { /** * 排列窗口以及调整窗口尺寸 * @param options 排列参数 */ setBounds(options: WindowBoundsOptions): Promise; /** * 一键自适应排列窗口 * @param seqlist 窗口序号列表,不传则排列全部窗口 */ setFlexableBounds(seqlist?: number[]): Promise; /** * 获取所有显示器列表 */ getAllDisplays(): Promise; } //# sourceMappingURL=window.d.ts.map