Skip to content

TemplateRenderOptions

@tsed/cli

Usage

typescript
import { TemplateRenderOptions } from "@tsed/cli/src/services/CliTemplatesService";

See /packages/cli/src/services/CliTemplatesService.ts.

Overview

ts
type TemplateRenderOptions = {
    name?: string;
    symbolName?: string;
    symbolPath?: string;
    directory?: string;
    from?: string;
} & Partial<RenderDataContext>;

name

ts
name?: string;

symbolName

ts
symbolName?: string;

symbolPath

ts
symbolPath?: string;

directory

ts
directory?: string;

from

ts
from?: string;

Released under the MIT License.