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