This commit is contained in:
Vanessa 2023-10-01 10:26:31 +08:00
parent 05cfcf7c2b
commit 64900706b2
13 changed files with 119 additions and 58 deletions

View file

@ -152,6 +152,14 @@ interface Window {
openFileByURL(URL: string): boolean
}
interface IPosition {
x: number,
y: number,
w?: number,
h?: number,
isLeft?: boolean
}
interface ISaveLayout {
name: string,
layout: IObject