NeahNew/node_modules/ioredis/built/utils/applyMixin.d.ts
2025-05-03 14:17:46 +02:00

4 lines
183 B
TypeScript

declare type Constructor = new (...args: any[]) => void;
declare function applyMixin(derivedConstructor: Constructor, mixinConstructor: Constructor): void;
export default applyMixin;