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