alapa
Version: 
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
14 lines (13 loc) • 365 B
TypeScript
import { ILoader, Loader } from "nunjucks";
import { Response, Request } from "express";
export declare class NunJunksLoader extends Loader implements ILoader {
    req: Request;
    res: Response;
    constructor();
    async?: false | undefined;
    getSource(templatePath: string): {
        src: string;
        path: string;
        noCache: boolean;
    };
}