Files
image-studio/core/layer.ts
2026-07-03 17:34:02 +02:00

6 lines
209 B
TypeScript

import type { ImageLayer } from "./image-layer";
import type { LayerGroup } from "./layer-group";
import type { RasterLayer } from "./raster-layer";
export type Layer = ImageLayer | RasterLayer | LayerGroup;