I would like to build a mixin and have it so it can be applied to different classes (in this case "Sprite" and "Graphics").
Line three does not work:
function Animated<T extends Constructor<Sprite> | Constructor<Graphics>>(Base: T) {
TypeScript complains that "T is not a constructor function".
import { Sprite, Texture, Container, Graphics } from "pixi.js";
type Constructor<T = {}> = new (...args: any[]) => T;
function Animated<T extends Constructor<Sprite> | Constructor<Graphics>>(Base: T) {
return class extends Base {
constructor(...args) {
super(...args);
}
animate() {
console.log('animte it');
}
}
}
export class AnimatedSprite extends Animated(Sprite) {
constructor(texture? : Texture) {
super(texture);
}
}
export class AnimatedContainer extends Animated(Graphics) {
constructor(nativeLines?: boolean) {
super(nativeLines);
}
}