aboutsummaryrefslogtreecommitdiff
path: root/src/background/operators/OperatorFactoryChain.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/operators/OperatorFactoryChain.ts')
-rw-r--r--src/background/operators/OperatorFactoryChain.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/background/operators/OperatorFactoryChain.ts b/src/background/operators/OperatorFactoryChain.ts
new file mode 100644
index 0000000..046ed42
--- /dev/null
+++ b/src/background/operators/OperatorFactoryChain.ts
@@ -0,0 +1,6 @@
+import Operator from "./Operator";
+import { Operation } from "../../shared/operations";
+
+export default interface OperatorFactoryChain {
+ create(op: Operation): Operator | null;
+}