augmenttoolkit / node_modules /@nestjs /common /utils /merge-with-values.util.d.ts
Leon4gr45's picture
Include updated package-lock.json (part 10)
cfbbc1a verified
Raw
History Blame Contribute Delete
184 Bytes
export type Constructor<T> = new (...args: any[]) => T;
export declare const MergeWithValues: <T extends Constructor<{}>>(data: {
[param: string]: any;
}) => (Metatype: T) => any;