mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2025-01-09 07:14:45 -05:00
12 lines
348 B
TypeScript
12 lines
348 B
TypeScript
import PublisherTarget from "../publishing/publisher-target";
|
|
import Dependency from "./dependency";
|
|
|
|
export default interface ModMetadata {
|
|
get id(): string;
|
|
get name(): string;
|
|
get version(): string;
|
|
get loaders(): string[];
|
|
get dependencies(): Dependency[];
|
|
|
|
getProjectId(project: PublisherTarget): string | undefined;
|
|
}
|