├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── docs └── ts-result-blog-post.html ├── eslint.config.js ├── package.json ├── src ├── __tests__ │ └── result.test.ts ├── index.ts └── result.ts ├── tsconfig.json └── tsup.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/README.md -------------------------------------------------------------------------------- /docs/ts-result-blog-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/docs/ts-result-blog-post.html -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/result.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/src/__tests__/result.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/src/result.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trylonai/ts-result/HEAD/tsup.config.ts --------------------------------------------------------------------------------