blob: 046ed420f5af5841f4b00235841b5d90065d823a (
plain) (
blame)
1
2
3
4
5
6
|
import Operator from "./Operator";
import { Operation } from "../../shared/operations";
export default interface OperatorFactoryChain {
create(op: Operation): Operator | null;
}
|