UNPKG

zents

Version:

ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.

8 lines (7 loc) 287 B
import type { ILoader, LoaderSource } from 'nunjucks'; import type { LoaderTemplates } from '../types/types'; export declare class Loader implements ILoader { protected templates: LoaderTemplates; constructor(templateFiles: string[]); getSource(key: string): LoaderSource; }