Skip to content

Commit cced639

Browse files
committed
changed DI_RETURN_TYPES into interface
1 parent 23114fe commit cced639

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

di/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const DI_SYMBOLS = {
5252
IToggleTodoController: Symbol.for('IToggleTodoController'),
5353
};
5454

55-
export type DI_RETURN_TYPES = {
55+
export interface DI_RETURN_TYPES {
5656
// Services
5757
IAuthenticationService: IAuthenticationService;
5858
ITransactionManagerService: ITransactionManagerService;
@@ -80,4 +80,4 @@ export type DI_RETURN_TYPES = {
8080
ICreateTodoController: ICreateTodoController;
8181
IGetTodosForUserController: IGetTodosForUserController;
8282
IToggleTodoController: IToggleTodoController;
83-
};
83+
}

0 commit comments

Comments
 (0)