13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
|
export type WebSettingsJSON = {
|
||
|
divs: DivJSON[];
|
||
|
};
|
||
|
|
||
|
export type DivJSON = {
|
||
|
id: string;
|
||
|
marginLeft: number;
|
||
|
marginRight: number;
|
||
|
marginTop: number;
|
||
|
marginBottom: number;
|
||
|
divsChild: DivJSON[];
|
||
|
};
|