Skip to content

Commit

Permalink
add next step values
Browse files Browse the repository at this point in the history
  • Loading branch information
WMXPY committed Oct 16, 2023
1 parent 43b751d commit e90585e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/execute/plan-next-step.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@
* @description Plan Next Step
*/

import { PubRecord } from "../record/record";
import { PubRecordSnapshot } from "../record/snapshot/snapshot";
import { PubCachedWorkflowConfiguration } from "../workflow/cache/configuration";

export type ExecutePlanNextStepResult = {

// readonly nextStep: ExecuteStep;
};

export const executePlanNextStep = (
_record: PubRecord,
_cachedConfiguration: PubCachedWorkflowConfiguration,
_snapshot: PubRecordSnapshot,
): ExecutePlanNextStepResult => {

return {};
Expand Down

0 comments on commit e90585e

Please sign in to comment.