UNPKG

fluent-results

Version:

Tiny, dependency-free TypeScript implementation of the Fluent Results pattern for railway-oriented programming.

14 lines (13 loc) 290 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AError = void 0; const AReason_1 = require("./AReason"); class AError extends AReason_1.AReason { /** * */ constructor(message) { super(message); } } exports.AError = AError;