mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-26 11:44:45 +01:00
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
|
export declare abstract class ExtendableError extends Error {
|
||
|
message: string;
|
||
|
name: string;
|
||
|
private _error;
|
||
|
private _stack;
|
||
|
constructor(message?: string);
|
||
|
readonly stack: string;
|
||
|
}
|
||
|
export default ExtendableError;
|