diff options
Diffstat (limited to 'src/content/operators/OperatorFactory.ts')
-rw-r--r-- | src/content/operators/OperatorFactory.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/content/operators/OperatorFactory.ts b/src/content/operators/OperatorFactory.ts new file mode 100644 index 0000000..f45973b --- /dev/null +++ b/src/content/operators/OperatorFactory.ts @@ -0,0 +1,6 @@ +import * as operations from "../../shared/operations"; +import Operator from "./Operator"; + +export default interface OperatorFactory { + create(op: operations.Operation, repeat: number): Operator; +} |