/** * Created by user on 2019/5/19. */ import Bluebird from "bluebird"; import { JSONSchema4 } from 'json-schema'; export interface IDownloadJsonAndBuildParams { href: string; saveName?: string; savePath?: string; compileName?: string; savePathCompile?: string; saveNameCompile?: string; skipExists?: boolean; handleSchemaBeforeCompile?(schema: T): T; } export declare function downloadJsonAndBuild(options: IDownloadJsonAndBuildParams): Bluebird; export declare function handleFileName(name: string): string;