Provides information about this app like name and version.

interface IAppService {
    getAppInfo(): Promise<
        Readonly<{ name: string; uriScheme: string; version: string }>,
    >;
    getMarketingInfo(): Promise<
        Readonly<{ marketingVersion: string; marketingVersionMoniker: string }>,
    >;
}

Methods

  • Retrieve information about the application that is currently running like name and version.

    Returns Promise<Readonly<{ name: string; uriScheme: string; version: string }>>

  • Returns Promise<Readonly<{ marketingVersion: string; marketingVersionMoniker: string }>>