From beb1ecac690c67b72786b7ad1b8a6cf178b81cb0 Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Tue, 28 Feb 2023 12:29:13 +0000 Subject: [PATCH] Made an interface that represents a Fabric dev --- src/loaders/fabric/fabric-developer.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/loaders/fabric/fabric-developer.ts diff --git a/src/loaders/fabric/fabric-developer.ts b/src/loaders/fabric/fabric-developer.ts new file mode 100644 index 0000000..105ddbf --- /dev/null +++ b/src/loaders/fabric/fabric-developer.ts @@ -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; +}