Files
image-studio/core/artboard.ts
2026-07-03 17:26:50 +02:00

14 lines
282 B
TypeScript

import type { Rect } from "./geometry";
import type { ArtboardId } from "./id";
import type { Layer } from "./layer";
export type Artboard = {
id: ArtboardId;
name: string;
bounds: Rect;
backgroundColor: string;
visible: boolean;
locked: boolean;
layers: Layer[];
};