Skip to content

ClassCommandOptions

@tsed/cli-core

Usage

typescript
import { ClassCommandOptions } from "@tsed/cli-core";

See /packages/cli-core/src/interfaces/CommandOptions.ts.

Overview

ts
interface ClassCommandOptions<Input> extends BaseCommandOptions<Input> {
    token: TokenProvider<CommandProvider>;
    [key: string]: any;
}

token

ts
token: TokenProvider<CommandProvider>;

[key: string]

ts
[key: string]: any;

Released under the MIT License.