Remove outdated aside (#7405)

This commit is contained in:
Denis Bykhov
2024-12-10 10:05:45 +07:00
committed by GitHub
parent bec1c70f21
commit fcfaba492e
4 changed files with 2 additions and 68 deletions
-3
View File
@@ -50,7 +50,6 @@ export interface Application extends Doc {
// Also attached ApplicationNavModel will be joined after this one main.
navigatorModel?: NavigatorModel
aside?: AnyComponent
locationResolver?: Resource<(loc: Location) => Promise<ResolvedLocation | undefined>>
locationDataResolver?: Resource<(loc: Location) => Promise<LocationData>>
@@ -130,7 +129,6 @@ export interface ApplicationNavModel extends Doc {
spaces?: SpacesNavModel[]
specials?: SpecialNavModel[]
aside?: AnyComponent
}
/**
@@ -163,7 +161,6 @@ export interface SpacesNavModel {
export interface NavigatorModel {
spaces: SpacesNavModel[]
specials?: SpecialNavModel[]
aside?: AnyComponent
}
/**