Files
image-studio/core/artboard.ts
2026-07-02 23:11:14 +02:00

12 lines
243 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;
layers: Layer[];
};