const ReactFbErrorUtils = require('ReactFbErrorUtils');
if (typeof ReactFbErrorUtils.invokeGuardedCallback !== 'function') {
throw new Error(
'Expected ReactFbErrorUtils.invokeGuardedCallback to be a function.',
);
}
function invokeGuardedCallbackImpl<A, B, C, D, E, F, Context>(
name: string | null,
func: (a: A, b: B, c: C, d: D, e: E, f: F) => mixed,
context: Context,
a: A,
b: B,
c: C,
d: D,
e: E,
f: F,
) {
ReactFbErrorUtils.invokeGuardedCallback.apply(this, arguments);
}
export default invokeGuardedCallbackImpl;