export interface Plugin {
    name: string;
    enabled: boolean;
    version: string;
    authors: string[];
    description: string;
};