Interface License

Represents a license.

interface License {
    id: string;
    name: string;
    url: null | string;
}

Properties

Properties

id: string

The SPDX license ID of a project.

name: string

The long name of the license.

url: null | string

The URL to this license.