File tree Expand file tree Collapse file tree 3 files changed +27
-23
lines changed Expand file tree Collapse file tree 3 files changed +27
-23
lines changed Original file line number Diff line number Diff line change 1
- export interface PluginItem {
2
- createAt : string ;
3
- homepage : string ;
4
- meta : Meta ;
5
- name : string ;
6
- runtime : Runtime ;
7
- schema : any ;
8
- }
9
-
10
- export interface Meta {
11
- avatar : string ;
12
- tags : string [ ] ;
13
- }
14
-
15
- export interface Runtime {
16
- endpoint : string ;
17
- render ?: string ;
18
- }
19
-
20
- export interface LobeChatPlugins {
21
- version : 1 ;
22
- plugins : PluginItem [ ] ;
23
- }
1
+ export * from './manifest' ;
2
+ export * from './market' ;
Original file line number Diff line number Diff line change
1
+ export interface PluginManifest {
2
+ createAt : string ;
3
+ endpoint : string ;
4
+ name : string ;
5
+ render ?: string ;
6
+
7
+ schema : any ;
8
+ }
Original file line number Diff line number Diff line change
1
+ export interface PluginItem {
2
+ createAt : string ;
3
+ homepage : string ;
4
+ manifest : string ;
5
+ meta : Meta ;
6
+ name : string ;
7
+ }
8
+
9
+ export interface Meta {
10
+ avatar : string ;
11
+ tags : string [ ] ;
12
+ }
13
+
14
+ export interface LobeChatPlugins {
15
+ plugins : PluginItem [ ] ;
16
+ version : 1 ;
17
+ }
You can’t perform that action at this time.
0 commit comments