File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"baseUrl" : " ." ,
4
4
"paths" : {
5
- "@/*" : [" ./src/*" ],
6
5
"*" : [" types/*" ]
7
6
},
8
7
"module" : " commonjs" ,
Original file line number Diff line number Diff line change @@ -172,8 +172,7 @@ export class ServicesClient<
172
172
emitEvents = ServiceEvents ,
173
173
onReturnableEvents = ServiceReturnableEvents ,
174
174
emitReturnableEvents = ServiceReturnableEvents ,
175
- callableMethods = ServiceCallable ,
176
- PluginClientConfigType extends IPluginConfig = any
175
+ callableMethods = ServiceCallable
177
176
> {
178
177
public readonly _pluginName ! : string ;
179
178
public readonly initBeforePlugins ?: Array < string > ;
@@ -188,7 +187,7 @@ export class ServicesClient<
188
187
onReturnableEvents ,
189
188
emitReturnableEvents ,
190
189
callableMethods ,
191
- PluginClientConfigType
190
+ any
192
191
> ;
193
192
protected async _register ( ) : Promise < void > {
194
193
// We must add the inits/runs list to the referenced service in order to change the init and run order
@@ -211,7 +210,7 @@ export class ServicesClient<
211
210
onReturnableEvents ,
212
211
emitReturnableEvents ,
213
212
callableMethods ,
214
- PluginClientConfigType
213
+ any
215
214
> ( this . _pluginName ) ;
216
215
}
217
216
}
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"baseUrl" : " ." ,
4
4
"paths" : {
5
- "@/*" : [" ./src/*" ],
6
5
"*" : [" types/*" ]
7
6
},
8
7
"module" : " commonjs" ,
You can’t perform that action at this time.
0 commit comments