import { ComponentStoryFormat } from './ComponentStoryFormat.js'; export type PlayFunction = (context: PlayFunctionContext) => Promise | void; export type PlayFunctionContext = { args: T; story: ComponentStoryFormat; canvasElement: HTMLElement; };