refactor: Application barrel changes without breaking changes (#10311)

This commit is contained in:
Nathan Walker
2023-06-13 09:29:39 -07:00
committed by GitHub
parent 0956cb0f91
commit ab5fa941bc
4 changed files with 55 additions and 55 deletions

View File

@@ -438,7 +438,7 @@ export class ApplicationCommon {
});
}
get orientation(): 'portrait' | 'landscape' | 'unknown' {
orientation(): 'portrait' | 'landscape' | 'unknown' {
return (this._orientation ??= this.getOrientation());
}
@@ -487,7 +487,7 @@ export class ApplicationCommon {
});
}
get systemAppearance(): 'dark' | 'light' | null {
systemAppearance(): 'dark' | 'light' | null {
// return cached value, or get it from the platform specific override
return (this._systemAppearance ??= this.getSystemAppearance());
}