feat: add core domain model foundations
This commit is contained in:
7
core/layer-group.ts
Normal file
7
core/layer-group.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import type { BaseLayer } from "./base-layer";
|
||||
import type { Layer } from "./layer";
|
||||
|
||||
export type LayerGroup = BaseLayer & {
|
||||
type: "group";
|
||||
children: Layer[];
|
||||
};
|
||||
Reference in New Issue
Block a user