Skip to content

EngineOptions

@tsed/engines

Usage

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

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

Overview

ts
interface EngineOptions {
    cache?: boolean;
    [otherOptions: string]: any;
}

cache

ts
cache?: boolean;

[otherOptions: string]

ts
[otherOptions: string]: any;

Released under the MIT License.