UNPKG

fluent-results

Version:

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

10 lines (9 loc) 198 B
import { AError } from "./AError"; export declare class ExceptionalError extends AError { private _exception; /** * */ constructor(exception: any); get exception(): any; }