Fix type issues

This commit is contained in:
Valentin Palkovic 2024-10-21 13:56:23 +02:00
parent 8549ddb017
commit 4da1ec12c6

View File

@ -12,7 +12,7 @@ export const { step: runStep } = instrument(
// await step("label", (context) => {
// // labeled step
// });
step: (label: StepLabel, play: PlayFunction, context: StoryContext) => play(context),
step: async (label: StepLabel, play: PlayFunction, context: StoryContext) => play(context),
},
{ intercept: true }
);