https://project.mdnd-it.cc/work_packages/94
This commit is contained in:
2025-08-23 04:25:28 +02:00
parent 725516ad6c
commit 19cfa031d0
25823 changed files with 1095587 additions and 2801760 deletions
+28
View File
@@ -0,0 +1,28 @@
import { ErrorLike } from "./types";
/**
* The Property Descriptor of a lazily-computed `stack` property.
*/
interface LazyStack {
configurable: true;
/**
* Lazily computes the error's stack trace.
*/
get(): string | undefined;
}
/**
* Is the property lazily computed?
*/
export declare function isLazyStack(stackProp: PropertyDescriptor | undefined): stackProp is LazyStack;
/**
* Is the stack property writable?
*/
export declare function isWritableStack(stackProp: PropertyDescriptor | undefined): boolean;
/**
* Appends the original `Error.stack` property to the new Error's stack.
*/
export declare function joinStacks(newError: ErrorLike, originalError?: ErrorLike): string | undefined;
/**
* Calls `joinStacks` lazily, when the `Error.stack` property is accessed.
*/
export declare function lazyJoinStacks(lazyStack: LazyStack, newError: ErrorLike, originalError?: ErrorLike): void;
export {};