mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-09 12:40:59 +00:00
feat(ui): list plugins
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { ComponentManifest } from '@/app/infra/entities/common';
|
||||
|
||||
export interface Plugin {
|
||||
status: 'intialized' | 'mounted' | 'unmounted';
|
||||
priority: number;
|
||||
plugin_config: object;
|
||||
manifest: {
|
||||
manifest: ComponentManifest;
|
||||
};
|
||||
enabled: boolean;
|
||||
components: {
|
||||
component_config: object;
|
||||
manifest: {
|
||||
manifest: ComponentManifest;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user