/** * Date: 5/24/20 * Time: 9:29 PM * @license MIT (see project's LICENSE file) */ /** * How do you translate a single error into a "throw sequence". Generally we cannot. * BUT if they are PigErrors and they were created with "child" errors then we can * recreate the scene of the crime. * Builds the sequence in the order of time - from the inside out. */ export declare function getErrorThrowSequence(error: Error): Error[]; /** * reverses `getErrorThrowSequence` */ export declare function getReverseErrorThrowSequence(error: Error): Error[]; //# sourceMappingURL=utils.d.ts.map