ts-json-schema-generator
Version:
Generate JSON schema from your Typescript sources
14 lines (13 loc) • 348 B
TypeScript
export interface Config {
path?: string;
type?: string;
tsconfig?: string;
expose: "all" | "none" | "export";
topRef: boolean;
jsDoc: "none" | "extended" | "basic";
sortProps?: boolean;
strictTuples?: boolean;
skipTypeCheck?: boolean;
extraJsonTags?: string[];
}
export declare const DEFAULT_CONFIG: Config;