This commit is contained in:
Nathan Bierema 2024-08-04 20:07:30 -04:00
parent 5923d744c7
commit caeb245d2d

View File

@ -15,7 +15,6 @@ export interface ActionCreatorObject {
readonly args: readonly string[]; readonly args: readonly string[];
} }
// eslint-disable-next-line @typescript-eslint/ban-types
function flatTree( function flatTree(
obj: { [key: string]: ActionCreator<Action<string>> }, obj: { [key: string]: ActionCreator<Action<string>> },
namespace = '', namespace = '',
@ -217,9 +216,9 @@ export function getSeralizeParameter(
} }
export function getStackTrace( export function getStackTrace(
// eslint-disable-next-line @typescript-eslint/ban-types // eslint-disable-next-line @typescript-eslint/no-empty-object-type
config: { trace?: () => {}; traceLimit: number }, config: { trace?: () => {}; traceLimit: number },
// eslint-disable-next-line @typescript-eslint/ban-types // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
toExcludeFromTrace?: Function | undefined, toExcludeFromTrace?: Function | undefined,
) { ) {
if (!config.trace) return undefined; if (!config.trace) return undefined;