Files
vue-desktop/src/core/window/IWindowForm.ts
2025-09-22 13:23:12 +08:00

14 lines
492 B
TypeScript

import type { IProcess } from '@/core/process/IProcess.ts'
import type { TWindowFormState } from '@/core/window/types/WindowFormTypes.ts'
import type { IDestroyable } from '@/core/common/types/IDestroyable.ts'
export interface IWindowForm extends IDestroyable {
/** 窗体id */
get id(): string;
/** 窗体所属的进程 */
get proc(): IProcess | undefined;
/** 窗体元素 */
get windowFormEle(): HTMLElement;
/** 窗体状态 */
get windowFormState(): TWindowFormState;
}