mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-07-24 21:36:06 +00:00
feat: plugin operations
This commit is contained in:
@@ -11,11 +11,13 @@ export interface Plugin {
|
||||
enabled: boolean;
|
||||
install_source: string;
|
||||
install_info: Record<string, any>; // eslint-disable-line @typescript-eslint/no-explicit-any
|
||||
components: {
|
||||
component_config: object;
|
||||
manifest: {
|
||||
manifest: ComponentManifest;
|
||||
};
|
||||
components: PluginComponent[];
|
||||
}
|
||||
|
||||
export interface PluginComponent {
|
||||
component_config: object;
|
||||
manifest: {
|
||||
manifest: ComponentManifest;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user