Type Alias: ThrowingOperationalHooksConfig<T>
type ThrowingOperationalHooksConfig<T> = Omit<
OperationalHooksConfig<T>,
"throwOnFailure"
> & {
throwOnFailure?: true;
};
Defined in: electron/utils/operationalHooks.ts:298
Type Declaration
throwOnFailure?
optional throwOnFailure?: true;
Type Parameters
T
T = unknown