ft_transcendence/pong/node_modules/@nestjs/common/utils/merge-with-values.util.d.ts
2023-05-02 19:15:50 +02: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;