Vendored Augani/openreel-video (MIT) into services/editor and wired it to the MAM. Editor runs as its own container on port 47435. Library assets pull in via ?asset=<uuid>; render exports route back via POST /api/v1/upload/simple. Sidebar Editor link on every page; Edit button on every preview modal. See services/editor/INTEGRATION.md for the patch map.
13 lines
579 B
TypeScript
13 lines
579 B
TypeScript
export { useUIStore } from './ui-store';
|
|
export type { AppView, Tool, Panel, EraserSettings, SelectionToolSettings, MagicWandSettings, DodgeBurnSettings } from './ui-store';
|
|
|
|
export { useProjectStore } from './project-store';
|
|
|
|
export { useHistoryStore } from './history-store';
|
|
export type { HistoryEntry } from './history-store';
|
|
|
|
export { useCanvasStore } from './canvas-store';
|
|
export type { Guide, SelectionRect, DragMode, ResizeHandle } from './canvas-store';
|
|
|
|
export { useSelectionStore } from './selection-store';
|
|
export type { SelectionState } from '../types/selection';
|