typescript-assistant
Version:
Combines and integrates professional Typescript tools into your project
11 lines (10 loc) • 323 B
TypeScript
import { Dependencies } from "../dependencies";
import { Command } from "./command";
export interface CIOptions {
tests?: boolean;
format?: boolean;
coverage?: boolean;
compileLimit: number;
disabledProjects?: string[];
}
export declare function createCICommand(deps: Dependencies): Command<CIOptions>;