Made an interface that represents license entry in quilt.mod.json

This commit is contained in:
Kir_Antipov 2023-03-17 07:34:24 +00:00
parent 71525b9c9f
commit c430f69877

View file

@ -0,0 +1,26 @@
/**
* Represents a license for a Quilt mod project.
*/
export interface QuiltLicense {
/**
* The SPDX identifier string for the license.
*
* See https://spdx.org/licenses/ for more information.
*/
id: string;
/**
* The name of the license.
*/
name: string;
/**
* The URL where the license text can be found.
*/
url: string;
/**
* A description of the license.
*/
description?: string;
}