UNPKG

@softwareventures/maintain-project

Version:

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

6 lines (5 loc) 313 B
import type { FileExists } from "./file-exists.js"; import type { FileNotFound } from "./file-not-found.js"; import type { NotADirectory } from "./not-a-directory.js"; import type { InvalidPath } from "./invalid-path.js"; export type InsertFailureReason = InvalidPath | NotADirectory | FileNotFound | FileExists;