This commit is contained in:
Nathan Bierema 2022-11-15 17:22:05 -05:00
parent 799437e8ef
commit 40bc2ae516

View File

@ -168,12 +168,14 @@ export function stringify(
export function getSeralizeParameter( export function getSeralizeParameter(
config: { config: {
serialize?: { serialize?:
immutable?: typeof Immutable; | {
refs?: (new (data: any) => unknown)[] | null; immutable?: typeof Immutable;
replacer?: (key: string, value: unknown) => unknown; refs?: (new (data: any) => unknown)[] | null;
options?: unknown | boolean; replacer?: (key: string, value: unknown) => unknown;
}; options?: unknown | boolean;
}
| boolean;
}, },
param: string param: string
): ):