UNPKG

ts-json-schema-generator

Version:

Generate JSON schema from your Typescript sources

12 lines (11 loc) 458 B
import type ts from "typescript"; import { BaseType } from "./BaseType.js"; import type { ObjectType } from "./ObjectType.js"; export declare class ConstructorType extends BaseType { protected namedArguments?: ObjectType | undefined; private comment; constructor(node?: ts.ConstructorTypeNode, namedArguments?: ObjectType | undefined); getId(): string; getComment(): string | undefined; getNamedArguments(): ObjectType | undefined; }