mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 08:20:58 -05:00
Made an interface that represents a Fabric dev
This commit is contained in:
parent
e01ab65997
commit
beb1ecac69
1 changed files with 16 additions and 0 deletions
16
src/loaders/fabric/fabric-developer.ts
Normal file
16
src/loaders/fabric/fabric-developer.ts
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
import { FabricContactInformation } from "./fabric-contact-information";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents an author or contributor of a Fabric mod project.
|
||||||
|
*/
|
||||||
|
export interface FabricDeveloper {
|
||||||
|
/**
|
||||||
|
* The real name, or username, of the person.
|
||||||
|
*/
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The contact information for the person.
|
||||||
|
*/
|
||||||
|
contact?: FabricContactInformation;
|
||||||
|
}
|
Loading…
Reference in a new issue