UNPKG

typesafe-ts

Version:

TypeScript utilities for type-safe error handling and optional values

11 lines 463 B
/** * typesafe-ts: TypeScript utilities for writing safer, more correct code * * This package provides monadic types and utilities that help prevent common runtime errors * by making potential failures explicit in the type system, along with ESLint rules to enforce their usage. */ export * from "./optional/index.js"; export * from "./result/index.js"; export * from "./brand/index.js"; export * from "./assert/index.js"; //# sourceMappingURL=index.d.ts.map