commit | 8b591d9978626d61da8493919201ef2af1307eea | [log] [tgz] |
---|---|---|
author | Adrià Vilanova Martínez <me@avm99963.com> | Sat Oct 19 15:55:15 2024 +0200 |
committer | Adrià Vilanova Martínez <me@avm99963.com> | Sat Oct 26 17:23:05 2024 +0200 |
tree | 2e5fb6cf27517cf4e6875b2aa05652c880683379 | |
parent | 3a20750bf5af8fddb2159cbf470813ca61cc2396 [diff] [blame] |
chore(architecture): deprecate some of the new architecture In order to use Dependency Injection, we need to deprecate old classes which aren't suitable for it, and which will be replaced by other ones in followup commits. Bug: twpowertools:226 Change-Id: I232bd9f036b6fb540eba27d7586d8054ce3de789
diff --git a/src/common/architecture/scripts/setUpDependencies/SetUpDependenciesScript.ts b/src/common/architecture/scripts/setUpDependencies/SetUpDependenciesScript.ts index b5ff6f0..1774a58 100644 --- a/src/common/architecture/scripts/setUpDependencies/SetUpDependenciesScript.ts +++ b/src/common/architecture/scripts/setUpDependencies/SetUpDependenciesScript.ts
@@ -1,6 +1,9 @@ import DependenciesProviderSingleton, { Dependency } from "../../dependenciesProvider/DependenciesProvider"; import Script from "../Script"; +/** + * @deprecated + */ export default abstract class SetUpDependenciesScript extends Script { abstract dependencies: Dependency[];