We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f3b89a commit c93d82bCopy full SHA for c93d82b
examples/javascript/basic-example.js
@@ -5,7 +5,7 @@ const TApplication = Symbol('IApplication');
5
const TService = Symbol('IService');
6
7
@Injectable([TService])
8
-export class Application implements IApplication {
+export class Application {
9
constructor(service) {
10
this.service = service;
11
}
@@ -16,7 +16,7 @@ export class Application implements IApplication {
16
17
18
@Injectable()
19
-export class Service implements IService {
+export class Service {
20
serve() {
21
// serves
22
0 commit comments