UNPKG

firmament-yargs

Version:

Typescript classes for building CLI node applications

8 lines (7 loc) 355 B
/// <reference types="node" /> import { ForceError } from "../interfaces/force-error"; export declare class ForceErrorImpl implements ForceError { forceError: boolean; checkForceError(message: string, cb?: (err: Error, res: any) => void): boolean; checkCallback(cb: (err: Error, anything: any) => void): (err: Error, anything: any) => void; }