Hello, when using more than 5 mixin, type declaration is incorrect : ``` declare const Component_base: import("vue-class-component/lib/declarations").VueClass<unkown>; ``` it should be ``` declare const Component_base: import("vue-class-component/lib/declarations").VueClass<A & B & C & D & E & F>; ``` i was force to do : ``` extends mixins(A, B, C, D, mixins(E, F)) ``` thanks