summary refs log tree commit diff
path: root/src/util/plugin/PluginManifest.ts
blob: 79ecc465a9a319a94a04e3c969f13ab4624c9e0f (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;
}