UNPKG

@etsoo/appscript

Version:

Applications shared TypeScript framework

21 lines (20 loc) 454 B
import { IActionResult } from "@etsoo/shared"; /** * Action result error */ export declare class ActionResultError extends Error { /** * Format the result to a meaningful string * @param result Result */ static format(result: IActionResult): string; /** * Related result */ readonly result: IActionResult; /** * Constructor * @param result Result */ constructor(result: IActionResult); }