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