Skip to content

BasicLayoutConfiguration

@tsed/logger

Usage

typescript
import { BasicLayoutConfiguration } from "@tsed/logger";

See /packages/logger/src/types/common/layouts/interfaces/BasicLayoutConfiguration.ts.

Overview

ts
interface BasicLayoutConfiguration {
    type: string;
    pattern?: string;
    tokens?: TokensHandlers;
    [key: string]: any;
}

type

ts
type: string;

pattern

ts
pattern?: string;

tokens

ts
tokens?: TokensHandlers;

[key: string]

ts
[key: string]: any;

Released under the MIT License.