Skip to content

GenericOfChainedDecorators

@tsed/schema

Usage

typescript
import { GenericOfChainedDecorators } from "@tsed/schema";

See /packages/specs/schema/src/types/decorators/generics/genericOf.ts.

Overview

ts
interface GenericOfChainedDecorators {
    (...args: any): any;
    Nested(...generics: GenericValue[]): this;
}

ts
(...args: any): any;

Nested

ts
Nested(...generics: GenericValue[]): this;

Declare a nested generic models

Released under the MIT License.