UNPKG

@ordojs/core

Version:

Core compiler and runtime for OrdoJS framework

17 lines 615 B
/** * @fileoverview OrdoJS Code Generator - Stub implementation for testing */ import type { ComponentAST, GeneratedCode, Props } from '../types/index.js'; export interface CodeGeneratorOptions { target?: 'development' | 'production'; minify?: boolean; sourceMaps?: boolean; } export declare class OrdoJSCodeGenerator { private options; constructor(options?: CodeGeneratorOptions); generate(ast: ComponentAST): GeneratedCode; generateClientCode(ast: ComponentAST): string; generateHTML(ast: ComponentAST, props?: Props): string; } //# sourceMappingURL=code-generator-fixed.d.ts.map