feat(sticky): add StickyObject to scene format schema

This commit is contained in:
Hiren Kangad
2026-03-12 22:09:12 +05:30
parent 69fcab717c
commit 6ee6060600
2 changed files with 15 additions and 3 deletions
+2 -1
View File
@@ -24,6 +24,7 @@ import type {
TextObject,
DrawingObject,
GroupObject,
StickyObject,
SceneObject,
} from './scene-format';
@@ -45,7 +46,7 @@ function isGifAsset(asset: string): boolean {
export interface SceneItem {
id: string;
type: 'image' | 'video' | 'text' | 'drawing' | 'group';
type: 'image' | 'video' | 'text' | 'drawing' | 'group' | 'sticky';
displayObject: Container;
data: AnySceneObject;
}