UNPKG

eta

Version:

Lightweight, fast, and powerful embedded JS template engine

9 lines 430 B
import { Eta as EtaCore } from "./core.ts"; import { readFile, resolvePath } from "./file-handling.ts"; export { EtaError, EtaFileResolutionError, EtaNameResolutionError, EtaParseError, EtaRuntimeError, } from "./err.ts"; export { type EtaConfig, type Options } from "./config.ts"; export declare class Eta extends EtaCore { readFile: typeof readFile; resolvePath: typeof resolvePath; } //# sourceMappingURL=index.d.ts.map