summaryrefslogtreecommitdiffhomepage
path: root/src/features/surface-host/index.ts
blob: 8f289f1eb9e3c378414dca143a702e16c20f4e4f (plain)
1
2
3
4
5
6
7
8
9
export { buildInvoke, planSurface } from "./logic/plan";
export type { FieldView, SurfaceRenderPlan } from "./logic/types";
export { default as SurfaceView } from "./ui/SurfaceView.svelte";

/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
	name: "surface-host",
	description: "Generic renderer for backend-declared surfaces",
} as const;