-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Read default-meta from package.json (by default!)
but avoid evaluating it when copied with gen! Add more command-line options
- Loading branch information
Showing
16 changed files
with
127 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,2 @@ | ||
export declare function isObject(item: any): boolean; | ||
export declare function get(obj: any, key: string): any; | ||
export declare function merge(target: any, relaxed?: boolean, ...sources: any[]): any; | ||
export declare function stringify(ob: any): string; | ||
export declare function convert(ob: string): string; | ||
export declare function toProperCase(txt: string): string; | ||
export declare function isEntity(entity: any): boolean; | ||
export declare function isField(field: any): boolean; | ||
export declare function getType(field: any): string; | ||
export declare function isType(field: any, type: string): boolean; | ||
export declare function metaMerge(schemaInPath: string, overlayInPath?: string, defaultMeta?: string, schemaOutPath?: string, overlayOutPath?: string, commentsOutPath?: string, allowExisting?: boolean, cleanDescriptions?: boolean, ignoreComments?: boolean, relaxedStructure?: boolean, noDequote?: boolean, noRemoveNull?: boolean, returnOverlay?: boolean): any; | ||
export declare function generate(templateDir: string, targetDir: string, schemaInPath: string, overlayInPath?: string, defaultMeta?: string): void; | ||
export declare function metaMerge(schemaInPath: string, overlayInPath?: string, defaultMeta?: string, defaultMetaKey?: string, schemaOutPath?: string, overlayOutPath?: string, commentsOutPath?: string, allowExisting?: boolean, cleanDescriptions?: boolean, ignoreComments?: boolean, relaxedStructure?: boolean, dontEval?: boolean, dontDequote?: boolean, dontRemoveNull?: boolean, returnOverlay?: boolean): any; | ||
export declare function generate(templateDir: string, targetDir: string, schemaInPath: string, overlayInPath?: string, defaultMeta?: string, defaultMetaKey?: string, evalExcludeFiles?: RegExp): void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.