mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-15 06:22:53 +00:00
9 lines
389 B
TypeScript
9 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 };
|