mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Made an interface that represents contact info in quilt.mod.json
This commit is contained in:
parent
cdc3fe4ccd
commit
8df878c5ba
1 changed files with 29 additions and 0 deletions
29
src/loaders/quilt/quilt-contact-information.ts
Normal file
29
src/loaders/quilt/quilt-contact-information.ts
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue