UNPKG

typerinth

Version:

A TypeScript library for interacting with the Modrinth API.

12 lines (11 loc) 250 B
/** * Represents a license. */ export default interface License { /** The SPDX license ID of a project. */ id: string; /** The long name of the license. */ name: string; /** The URL to this license. */ url: string | null; }