/// function mixinmixer TBase>( base: TBase, ...mixins: TMixin[] ): AnyOf> { // @ts-ignore return mixins.reduce((acc, mixin) => mixin(acc), base); } export = mixinmixer;