@razen-core/zenweb
Version:
A minimalist TypeScript framework for building reactive web applications with no virtual DOM
17 lines • 440 B
TypeScript
/**
* ZenWeb Parser
* Transforms view and style keywords into runtime calls
*/
export interface ParseResult {
code: string;
styles: string;
}
/**
* Parse ZenWeb component file and transform view/style keywords
*/
export declare function parseZenWebFile(source: string): ParseResult;
/**
* Transform imports to use runtime
*/
export declare function transformImports(code: string): string;
//# sourceMappingURL=parser.d.ts.map