Interface AboutServiceInterface

Use the About interface to access information related to the application, such as its version or the list of third party applications it uses.

interface AboutServiceInterface {
    getThirdPartyLibraries(): Promise<ThirdPartyLibrary[]>;
    getVersion(): Promise<VersionInfoInterface>;
}

Methods

  • Retrieve a list of third party libraries used by the application, along with their respective licenses.

    Returns Promise<ThirdPartyLibrary[]>

Generated using TypeDoc