typescript-assistant
Version:
Combines and integrates professional Typescript tools into your project
12 lines (11 loc) • 360 B
TypeScript
import { Dependencies } from "../dependencies";
import { Command } from "./command";
export interface AssistOptions {
statusServerPort?: number;
format?: boolean;
coverage?: boolean;
projects?: string[];
testConfig?: string;
testsGlob?: string;
}
export declare function createAssistCommand(deps: Dependencies): Command<AssistOptions>;