Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

6 lines
246 B
TypeScript

export declare function isPlainObject(item: unknown): item is Record<keyof any, unknown>;
export interface DeepmergeOptions {
clone?: boolean;
}
export default function deepmerge<T>(target: T, source: unknown, options?: DeepmergeOptions): T;