UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

19 lines (18 loc) 455 B
import type { ModelProperties } from "./ModelProperties"; /** * Properties for the splash screen. */ export interface SplashScreenModelProperties extends ModelProperties { /** * Whether to show the splash screen. */ showSplashScreen?: boolean; /** * The splash icon source. */ splashScreenIcon?: string; /** * Whether to use application name on the splash screen. */ useApplicationName?: boolean; }