summary refs log tree commit diff
path: root/src/util/plugin/PluginManifest.ts
blob: 518202ec469d86b266dfd8a655592e173547f0ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export class PluginManifest {
	id: string;
	name: string;
	authors: string[];
	repository: string;
	license: string;
	version: string; // semver
	versionCode: number; // integer
	mainClass: string;
}