@designcombo/state 5.5.5 → 5.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/events.d.ts CHANGED
@@ -41,6 +41,7 @@ export declare const EDIT_SHAPE = "edit:shape";
41
41
  export declare const EDIT_TEMPLATE_ITEM = "edit:templateItem";
42
42
  export declare const DELETE_TEMPLATE_ITEM = "edit:deleteTemplateItem";
43
43
  export declare const EDIT_BACKGROUND_EDITOR = "edit:backgroundEditor";
44
+ export declare const EDIT_TRACK = "edit:track";
44
45
  export declare const ENTER_EDIT_MODE = "enterEditMode";
45
46
  export declare const ACTIVE_PREFIX = "active";
46
47
  export declare const ACTIVE_SET = "active:set";
@@ -0,0 +1,3 @@
1
+ import { State } from '@designcombo/types';
2
+
3
+ export declare function editTrack(state: State, payload: Record<string, any>): Promise<Partial<State>>;