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