trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
16 lines • 745 B
TypeScript
/**
* Admin Components panel — render any registered headless component in
* isolation inside the admin inspector rail (ADR 0034 §4.3 Studio tooling).
*
* Consumes the shared `inspectorRegistry` and the canonical entries from
* `src/inspector/entries`: a picker selects a component, the panel mounts
* its vanilla renderer against a fresh core and shows live state JSON plus
* the entry's action buttons. Behavior stays in the cores; this is a thin
* consumer, the same inspect wrapper wedge-smoke uses.
*/
import '../inspector/entries/index.js';
export interface AdminInspectHandle {
destroy(): void;
}
export declare function mountAdminInspect(host: HTMLElement): AdminInspectHandle;
//# sourceMappingURL=admin-inspect.d.ts.map