mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2025-01-09 15:24:46 -05:00
13 lines
348 B
TypeScript
13 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;
|
||
|
}
|