UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

8 lines (7 loc) 711 B
import type { FsStage, InsertResult } from "../fs-stage/fs-stage.js"; import type { Project } from "../project/project.js"; export declare function writeIdeaRunConfigurations(project: Project): (fsStage: FsStage) => Promise<InsertResult>; export declare function writeIdeaRunConfigurationFix(project: Project): (fsStage: FsStage) => Promise<InsertResult>; export declare function writeIdeaRunConfigurationLint(project: Project): (fsStage: FsStage) => Promise<InsertResult>; export declare function writeIdeaRunConfigurationTest(project: Project): (fsStage: FsStage) => Promise<InsertResult>; export declare function writeIdeaRunConfigurationStart(project: Project): (fsStage: FsStage) => Promise<InsertResult>;