@softwareventures/maintain-project
Version:
Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited
8 lines (7 loc) • 354 B
TypeScript
import type { Result } from "../result/result.js";
import type { ProjectSource } from "../project/project.js";
export type YarnInstallResult = Result<YarnInstallFailureReason>;
export interface YarnInstallFailureReason {
readonly type: "yarn-install-failed";
}
export declare function yarnInstall(project: ProjectSource): Promise<YarnInstallResult>;