6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
|
|
import type { IProcess } from '@/core/process/IProcess.ts'
|
||
|
|
|
||
|
|
export interface IWindowForm {
|
||
|
|
get id(): string;
|
||
|
|
get proc(): IProcess | undefined;
|
||
|
|
}
|