汎用コンストラクタ定義
ミックスイン後のクラス型を定義
https://www.typescriptlang.org/docs/handbook/mixins.html#constrained-mixins
type Positionable = GConstructor<{ setPos: (x: number, y: number) => void }>;
Rest
Generated using TypeDoc
汎用コンストラクタ定義
ミックスイン後のクラス型を定義
See
https://www.typescriptlang.org/docs/handbook/mixins.html#constrained-mixins
Example