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/ScriptProvider.ts b/src/common/architecture/scripts/ScriptProvider.ts
index e18e405..63b896e 100644
--- a/src/common/architecture/scripts/ScriptProvider.ts
+++ b/src/common/architecture/scripts/ScriptProvider.ts
@@ -1,6 +1,9 @@
import { Context } from "../entrypoint/Context";
import Script from "./Script";
+/**
+ * @deprecated
+ */
export default interface ScriptProvider {
getScripts(context: Context): Script[];
}