blob: f45973b627e30cad3a225357d0eb15a0a556b7d9 (
plain) (
blame)
1
2
3
4
5
6
|
import * as operations from "../../shared/operations";
import Operator from "./Operator";
export default interface OperatorFactory {
create(op: operations.Operation, repeat: number): Operator;
}
|