24 lines
930 B
TypeScript
24 lines
930 B
TypeScript
|
|
/**
|
||
|
|
* @open-matrix/browser-host
|
||
|
|
*
|
||
|
|
* Browser-host shell for Matrix custom elements. Extracted from
|
||
|
|
* @open-matrix/core during the core-decontamination workstream to stop
|
||
|
|
* MatrixDSLHost changes from rebuilding the actor kernel.
|
||
|
|
*
|
||
|
|
* Phase 1 (this commit): package shell only. The actual files still live
|
||
|
|
* in `@open-matrix/core/browser/*` and are re-exported here so consumer
|
||
|
|
* migrations can start in parallel with the move. Phase 1 commit 3 moves
|
||
|
|
* the files and removes the core copies.
|
||
|
|
*
|
||
|
|
* Use subpath imports when possible:
|
||
|
|
* from '@open-matrix/browser-host/host' — host element + control
|
||
|
|
* from '@open-matrix/browser-host/recovery' — recovery + target helpers
|
||
|
|
* from '@open-matrix/browser-host/app-ready' — readiness signal
|
||
|
|
*/
|
||
|
|
|
||
|
|
export * from './BundleFreshness.js';
|
||
|
|
export * from './host.js';
|
||
|
|
export * from './recovery.js';
|
||
|
|
export * from './app-ready.js';
|
||
|
|
export * from './profile-trace.js';
|