import { Context } from "../../context/index"; import Step from "./Step"; import Action from "../../graph/Action"; export default class LogicStep extends Step { beforeAction?: typeof Action; builderAction?: typeof Action; afterAction?: typeof Action; execute(context: Context): Promise; }