---
url: /api/engines/types/components/interface-engine-options.md
description: api documentation of EngineOptions from @tsed/engines
---

## Usage

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

> See [/packages/engines/src/components/Engine.ts](https://github.com/tsedio/tsed/blob/v8.38.4/packages/engines/src/components/Engine.ts#L0-L0).

## Overview

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

## cache

```ts
cache?: boolean;
```

## \[otherOptions: string]

```ts
[otherOptions: string]: any;
```
