mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-23 18:34:45 +01:00
8 lines
389 B
TypeScript
8 lines
389 B
TypeScript
declare function serializeError(val: any, seen?: WeakMap<object, any>): any;
|
|
declare function processError(err: any): any;
|
|
declare function replaceAsymmetricMatcher(actual: any, expected: any, actualReplaced?: WeakSet<object>, expectedReplaced?: WeakSet<object>): {
|
|
replacedActual: any;
|
|
replacedExpected: any;
|
|
};
|
|
|
|
export { processError, replaceAsymmetricMatcher, serializeError };
|