| 1 | /** |
| 2 | * @html-video/core — Public API surface. |
| 3 | */ |
| 4 | |
| 5 | export * from './types/index.js'; |
| 6 | export { HtmlVideoError } from './errors.js'; |
| 7 | export type { ErrorCode } from './errors.js'; |
| 8 | export { AssetStore } from './asset-store.js'; |
| 9 | export type { AssetStoreOptions } from './asset-store.js'; |
| 10 | export { EngineRegistry, TemplateRegistry, ProjectStore } from './registry.js'; |
| 11 | export { ProjectOrchestrator } from './project.js'; |
| 12 | export type { |
| 13 | CreateProjectInput, |
| 14 | ProjectOrchestratorDeps, |
| 15 | } from './project.js'; |
| 16 | export { |
| 17 | resolveMinimaxCredentials, |
| 18 | generateTts, |
| 19 | generateMusic, |
| 20 | } from './minimax.js'; |
| 21 | export type { MinimaxCredentials, MinimaxAudioResult } from './minimax.js'; |
| 22 |