Files
evento/node_modules/@nestjs/common/utils/merge-with-values.util.d.ts
2026-03-18 14:55:56 -03:00

5 lines
184 B
TypeScript

export type Constructor<T> = new (...args: any[]) => T;
export declare const MergeWithValues: <T extends Constructor<{}>>(data: {
[param: string]: any;
}) => (Metatype: T) => any;