Made an interface that represents contact info in quilt.mod.json

This commit is contained in:
Kir_Antipov 2023-03-15 10:41:05 +00:00
parent cdc3fe4ccd
commit 8df878c5ba

View file

@ -0,0 +1,29 @@
/**
* Represents the contact information for a Quilt mod project.
*/
export interface QuiltContactInformation {
/**
* Valid e-mail address for the organization/developers.
*/
email?: string;
/**
* Valid HTTP/HTTPS address for the project or the organization/developers behind it.
*/
homepage?: string;
/**
* Valid HTTP/HTTPS address for the project issue tracker.
*/
issues?: string;
/**
* Valid HTTP/HTTPS address for a source code repository.
*/
sources?: string;
/**
* Additional, non-standard keys for the contact information.
*/
[key: string]: string | undefined;
}