ATL-732: Support for static splash screen.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta
2020-12-04 16:34:31 +01:00
committed by Akos Kitta
parent cff2c95684
commit 1acf13c397
10 changed files with 318 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
export const splashServicePath = '/services/splash-service';
export const SplashService = Symbol('SplashService');
export interface SplashService {
requestClose(): Promise<void>;
}