4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
declare function flatten<Value = any>(target: Record<string, Value> | undefined | null, maxDepth?: number): any;
|
|
|
|
export { flatten };
|