Interface ThirdPartyLibrary

The interface that holds information about the third party libraries used by NavVis IVION.

interface ThirdPartyLibrary {
    description: string;
    licenses: LicenceInformation[];
    name: string;
    websiteUrl: string;
}

Properties

description: string

The description for the library.

licenses: LicenceInformation[]

The licenses under which the third party library is published

name: string

The name of the third party library.

websiteUrl: string

The website URL for the third party library.

Generated using TypeDoc