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