Skip to content

Commit c64707c

Browse files
committed
fix typing error
1 parent e3a18d9 commit c64707c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

template/services/greeter.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,17 @@ const GreeterService: ServiceSchema<GreeterSettings> = {
7171
/**
7272
* Service created lifecycle event handler
7373
*/
74-
created(this: GreeterThis) {},
74+
created() {},
7575

7676
/**
7777
* Service started lifecycle event handler
7878
*/
79-
async started(this: GreeterThis) {},
79+
async started() {},
8080

8181
/**
8282
* Service stopped lifecycle event handler
8383
*/
84-
async stopped(this: GreeterThis) {},
84+
async stopped() {},
8585
};
8686

8787
export default GreeterService;

0 commit comments

Comments
 (0)