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