We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2560342 commit f3da709Copy full SHA for f3da709
1 file changed
src/story.ts
@@ -214,13 +214,13 @@ export interface StrictGlobalTypes {
214
215
export interface Renderer {
216
/** What is the type of the `component` annotation in this renderer? */
217
- component: unknown;
+ component: any;
218
219
/** What does the story function return in this renderer? */
220
- storyResult: unknown;
+ storyResult: any;
221
222
/** What type of element does this renderer render to? */
223
- canvasElement: unknown;
+ canvasElement: any;
224
225
mount(): Promise<Canvas>;
226
0 commit comments