Skip to content

Commit 6f6b9ea

Browse files
committed
Rebuild
1 parent 9610268 commit 6f6b9ea

File tree

3 files changed

+36
-25
lines changed

3 files changed

+36
-25
lines changed

typescript-json-schema.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,16 @@ export declare class JsonSchemaGenerator {
8080
readonly ReffedDefinitions: {
8181
[key: string]: Definition;
8282
};
83-
private parseCommentsIntoDefinition(symbol, definition, otherAnnotations);
84-
private getDefinitionForRootType(propertyType, reffedType, definition);
85-
private getReferencedTypeSymbol(prop);
86-
private getDefinitionForProperty(prop, node);
87-
private getEnumDefinition(clazzType, definition);
88-
private getUnionDefinition(unionType, prop, unionModifier, definition);
89-
private getIntersectionDefinition(intersectionType, definition);
90-
private getClassDefinition(clazzType, definition);
91-
private getTypeName(typ);
92-
private getTypeDefinition(typ, asRef?, unionModifier?, prop?, reffedType?, pairedSymbol?);
83+
private parseCommentsIntoDefinition;
84+
private getDefinitionForRootType;
85+
private getReferencedTypeSymbol;
86+
private getDefinitionForProperty;
87+
private getEnumDefinition;
88+
private getUnionDefinition;
89+
private getIntersectionDefinition;
90+
private getClassDefinition;
91+
private getTypeName;
92+
private getTypeDefinition;
9393
setSchemaOverride(symbolName: string, schema: Definition): void;
9494
getSchemaForSymbol(symbolName: string, includeReffedDefinitions?: boolean): Definition;
9595
getSchemaForSymbols(symbolNames: string[], includeReffedDefinitions?: boolean): Definition;
@@ -98,7 +98,7 @@ export declare class JsonSchemaGenerator {
9898
getMainFileSymbols(program: ts.Program, onlyIncludeFiles?: string[]): string[];
9999
}
100100
export declare function getProgramFromFiles(files: string[], jsonCompilerOptions?: any, basePath?: string): ts.Program;
101-
export declare function buildGenerator(program: ts.Program, args?: PartialArgs): JsonSchemaGenerator | null;
101+
export declare function buildGenerator(program: ts.Program, args?: PartialArgs, onlyIncludeFiles?: string[]): JsonSchemaGenerator | null;
102102
export declare function generateSchema(program: ts.Program, fullTypeName: string, args?: PartialArgs, onlyIncludeFiles?: string[]): Definition | null;
103103
export declare function programFromConfig(configFileName: string, onlyIncludeFiles?: string[]): ts.Program;
104104
export declare function exec(filePattern: string, fullTypeName: string, args?: Args): void;

typescript-json-schema.js

Lines changed: 24 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)