NestJS dependency injection support useValue provider

This commit is contained in:
Vasco-jofra
2025-06-15 00:21:38 +02:00
parent 2b143c86ac
commit 477f32c7ff
6 changed files with 25 additions and 5 deletions

View File

@@ -5,3 +5,7 @@ export abstract class Foo {
export abstract class Foo2 {
abstract fooMethod(x: string): void;
}
export abstract class Foo3 {
abstract fooMethod(x: string): void;
}