typescript-assistant
Version:
Combines and integrates professional Typescript tools into your project
8 lines (7 loc) • 357 B
TypeScript
import { Dependencies } from "../dependencies";
import { AssistOptions } from "./assist";
import { Command } from "./command";
export interface PrePushCommandOptions extends Pick<AssistOptions, "testConfig" | "testsGlob"> {
disabledProjects?: string[];
}
export declare function createPrePushCommand(deps: Dependencies): Command<PrePushCommandOptions>;