| 6 | |
| 7 | /** 插件初始化时的传入参数, 可以解构并调用 */ |
| 8 | export interface PluginSetupParameters { |
| 9 | coreApis: CoreApis |
| 10 | addData: typeof addData |
| 11 | addHook: typeof addHook |
| 12 | registerData: typeof registerData |
| 13 | registerAndGetData: typeof registerAndGetData |
| 14 | getHook: typeof getHook |
| 15 | } |
| 16 | |
| 17 | /** 插件基本信息 */ |
| 18 | export interface PluginMinimalData extends FeatureBase { |
nothing calls this directly
no outgoing calls
no test coverage detected