UNPKG

345 BTypeScriptView Raw
1import { clone, CloneValue } from './clone';
2/**
3 * @deprecated Switch to {@link CloneValue} instead
4 * @remarks Since 2.2.0
5 * @public
6 */
7export declare type DedupValue<T, N extends number> = CloneValue<T, N>;
8/**
9 * @deprecated Switch to {@link clone} instead
10 * @remarks Since 1.11.0
11 * @public
12 */
13export declare const dedup: typeof clone;