import { RectangleConfiguration } from '../configuration/RectangleConfiguration'; import { GameObjectEventMapEmitsOptions } from './shared/GameObjectEventMapEmitsOptions'; import { ExtractUpdateEvent } from '../../util/types/ExtractUpdateEvent'; import { UpdateEvent } from '../../util/types/UpdateEvent'; export type RectangleEventEmitsOptions = GameObjectEventMapEmitsOptions & { [P in UpdateEvent]: [RectangleConfiguration[ExtractUpdateEvent

]?]; };