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