5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
import type { ImageLayer } from "./image-layer";
|
|
import type { LayerGroup } from "./layer-group";
|
|
|
|
export type Layer = ImageLayer | LayerGroup;
|