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