UNPKG

typescript-assistant

Version:

Combines and integrates professional Typescript tools into your project

9 lines (8 loc) 264 B
import { Dependencies } from "../dependencies"; import { Command } from "./command"; export interface CIOptions { tests?: boolean; format?: boolean; coverage?: boolean; } export declare function createCICommand(deps: Dependencies): Command<CIOptions>;