alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
8 lines (7 loc) • 350 B
TypeScript
import { AnyObject } from "../interface/object";
export declare class TemplateEngine {
static compile(template: string, context?: AnyObject): any;
static renderString(template: string, context?: object): string;
static getTemplate(templatePath: string): string;
static renderFile(templatePath: string, context?: AnyObject): string;
}