Skip to content

JsonLazyRef

@tsed/schema

Usage

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

See /packages/specs/schema/src/types/domain/JsonLazyRef.ts.

Overview

ts
class JsonLazyRef {
    readonly getType: () => Type<any>;
    readonly isLazyRef = true;
    constructor(getType: () => Type<any>);
    get target(): Type<any>;
    get schema(): import("./JsonSchema.js").JsonSchema;
    get name(): string;
}

readonly getType:

ts
readonly getType: () => Type<any>;

readonly isLazyRef

ts
readonly isLazyRef = true;

get target

ts
get target(): Type<any>;

get schema

ts
get schema(): import("./JsonSchema.js").JsonSchema;

get name

ts
get name(): string;

Released under the MIT License.