Skip to content

VashEngine

@tsed/engines

Usage

typescript
import { VashEngine } from "@tsed/engines";

See /packages/engines/src/types/components/VashEngine.ts.

Overview

ts
class VashEngine extends Engine {
    compile(template: string, options: any): (options: any) => Promise<string>;
    render(template: string, options: any): Promise<string>;
}

compile

ts
compile(template: string, options: any): (options: any) => Promise<string>;

render

ts
render(template: string, options: any): Promise<string>;

Released under the MIT License.