UNPKG

418 BTypeScriptView Raw
1/// <reference types="@types/commander" />
2import * as commander from 'commander';
3import { TransformedOptions } from './transform-engine';
4export declare const initCLI: (args: any) => commander.IExportedCommand;
5export declare const cliError: (err: string) => void;
6export declare const validateCliOptions: (options: any) => void;
7export declare const transformOptions: (options: any) => Promise<TransformedOptions>;