import type { Component } from "./Component"; import type { GameObject } from "./GameObject"; export type ComponentConstructor = new (gameObject: GameObject) => T;