JsonLazyRef
@tsed/schema
Usage
typescript
import { JsonLazyRef } from "@tsed/schema";
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;