@glyphtek/unspecd
Version:
A declarative UI framework for building internal tools and dashboards with TypeScript. Create interactive tables, forms, and dashboards using simple specifications.
16 lines • 664 B
TypeScript
/**
* Unspec'd Framework Runtime
*
* This file contains the core runtime logic for rendering tools based on their
* ToolSpec definitions. It acts as the main entry point for the framework.
*/
import type { ToolSpec } from './dsl-schema.js';
/**
* Main function to render a tool based on its specification.
* This is the primary entry point for the Unspec'd framework runtime.
*
* @param spec - The ToolSpec object defining the tool to render
* @param targetElement - The HTML element where the tool should be rendered
*/
export declare function renderTool(spec: ToolSpec, targetElement: HTMLElement): Promise<void>;
//# sourceMappingURL=runtime.d.ts.map