export default function applyMixins(derivedCtor: any, baseCtors: any[]) { baseCtors.forEach((baseCtor) => { Object.keys(baseCtor.prototype).forEach((name) => { derivedCtor.prototype[name] = baseCtor.prototype[name]; }); }); }