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 a7b47aa commit 940579eCopy full SHA for 940579e
src/component.ts
@@ -1,7 +1,9 @@
1
import {Component, ProviderMap} from '@loopback/core';
2
-
3
export class SoftDeleteComponent implements Component {
4
- constructor() {}
5
6
providers?: ProviderMap = {};
+
+ constructor() {
+ // Initialize the providers property in the constructor
7
+ this.providers = {};
8
+ }
9
}
0 commit comments