Skip to content

Commit 73df498

Browse files
committed
fix(types): fix typescript error with global config services
1 parent 9c9f1f6 commit 73df498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export interface CommonConfigInterface<S = string> {
55
}
66

77
export interface GlobalConfigInterface<S = string> extends CommonConfigInterface<S> {
8-
services?: [Service<S>, ...Service<S>[]];
8+
services?: Service<S>[];
99
}
1010

1111
export interface LocalConfigInterface<S = string> extends CommonConfigInterface<S> {

0 commit comments

Comments
 (0)