UNPKG

213 BTypeScriptView Raw
1import type { PropertyKey } from "../index";
2declare function CopyDataProperties<T, S, E extends PropertyKey>(
3 target: T,
4 source: S,
5 excludedItems: E[],
6): T & Omit<S, E>;
7export = CopyDataProperties;