UNPKG

@tsed/schema

Version:
10 lines (9 loc) 294 B
import { Type } from "@tsed/core"; export declare 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; }