UNPKG

fluent-results

Version:

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

10 lines (9 loc) 189 B
import { AError } from "./AError"; export declare class PromiseRejection extends AError { private _reason; /** * */ constructor(reason: any); get reason(): any; }