12 lines
243 B
TypeScript
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[];
|
|
};
|