UNPKG

@softwareventures/maintain-project

Version:

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

5 lines (4 loc) 249 B
import type { Result } from "../result/result.js"; import type { FileNode } from "./file-node.js"; import type { ReadFileFailureReason } from "./read-file-failure-reason.js"; export type ReadFileNodeResult = Result<ReadFileFailureReason, FileNode>;