---
symbol: TaskLoggerOptions
module: "@tsed/cli-tasks"
type: interface
meta:
 - name: keywords
   description: api typescript node.js documentation TaskLoggerOptions interface
---
# TaskLoggerOptions - @tsed/cli-tasks

## Usage

```typescript
import { TaskLoggerOptions } from "@tsed/cli-tasks";
```

> See [/packages/cli-tasks/src/domain/TaskLogger.ts](https://github.com/tsedio/tsed-cli/blob/v7.5.1/packages/cli-tasks/src/domain/TaskLogger.ts#L0-L0).

## Overview

```ts
interface TaskLoggerOptions {
    title: string;
    index: number;
    type?: "group" | "taskLog" | "log" | "spinner" | "progress";
    parent?: TaskLogger;
    renderMode?: "default" | "raw";
}
```

<!-- Members -->

## title

```ts
title: string;
```

## index

```ts
index: number;
```

## type

```ts
type?: "group" | "taskLog" | "log" | "spinner" | "progress";
```

## parent

```ts
parent?: TaskLogger;
```

## renderMode

```ts
renderMode?: "default" | "raw";
```
