Made an interface that represents a Fabric dev

This commit is contained in:
Kir_Antipov 2023-02-28 12:29:13 +00:00
parent e01ab65997
commit beb1ecac69

View 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;
}