UNPKG

budgie-cli

Version:
10 lines (9 loc) 470 B
import { IConverter, ICreateConverterDependencies } from "../converter"; /** * Creates a TypeScript converter. * * @param dependencies Dependencies to create the converter. * @returns Promise for a TypeScript converter, if it could be created. * @remarks This will add to the existing file cache any tsconfig-included files. */ export declare const createTypeScriptConverter: (dependencies: ICreateConverterDependencies) => Promise<Error | IConverter>;