papi-dts
    Preparing search index...

    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 }>,
        >;
    }
    Index

    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 }>>