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; immutable?: typeof Immutable;
refs?: (new (data: any) => unknown)[] | null; refs?: (new (data: any) => unknown)[] | null;
replacer?: (key: string, value: unknown) => unknown; replacer?: (key: string, value: unknown) => unknown;
options?: unknown | boolean; options?: unknown | boolean;
}; }
| boolean;
}, },
param: string param: string
): ):