4 lines
183 B
TypeScript
Raw Normal View History

2025-09-05 14:59:21 +08:00
declare type Constructor = new (...args: any[]) => void;
declare function applyMixin(derivedConstructor: Constructor, mixinConstructor: Constructor): void;
export default applyMixin;