// UE/CreateWidget.ts import type { UserWidget } from '#root/UE/UserWidget.ts'; type WidgetConstructor = new () => T; export function CreateWidget( widgetClass: WidgetConstructor ): T { return new widgetClass(); }