refactor: circular deps part 13

This commit is contained in:
Nathan Walker
2025-07-09 20:07:56 -07:00
parent ee03774ec0
commit 579a25d583
31 changed files with 552 additions and 387 deletions

View File

@ -1,4 +1,3 @@
import type { ApplicationCommon } from './application-common';
import type { EventData, Observable } from '../data/observable';
import type { View } from '../ui/core/view';
@ -42,7 +41,7 @@ export interface ApplicationEventData {
/**
* The instance that has raised the event.
*/
object: ApplicationCommon | Observable;
object: any; // Application;
}
/**