ordojs
Version:
A revolutionary web framework with compile-time optimizations and unified client-server development
17 lines • 615 B
TypeScript
/**
* @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