Skip to content

Commit f3da709

Browse files
committed
Use any for generic of Renderer
1 parent 2560342 commit f3da709

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/story.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,13 @@ export interface StrictGlobalTypes {
214214

215215
export interface Renderer {
216216
/** What is the type of the `component` annotation in this renderer? */
217-
component: unknown;
217+
component: any;
218218

219219
/** What does the story function return in this renderer? */
220-
storyResult: unknown;
220+
storyResult: any;
221221

222222
/** What type of element does this renderer render to? */
223-
canvasElement: unknown;
223+
canvasElement: any;
224224

225225
mount(): Promise<Canvas>;
226226

0 commit comments

Comments
 (0)