@storybook/csf 0.1.12-next.1 → 0.1.13-next.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -445,7 +445,9 @@ interface ComponentAnnotations<TRenderer extends Renderer = Renderer, TArgs = Ar
|
|
445
445
|
*
|
446
446
|
* By defining them each component will have its tab in the args table.
|
447
447
|
*/
|
448
|
-
subcomponents?: Record<string, TRenderer
|
448
|
+
subcomponents?: Record<string, (TRenderer & {
|
449
|
+
T: any;
|
450
|
+
})['component']>;
|
449
451
|
/**
|
450
452
|
* Function that is executed after the story is rendered.
|
451
453
|
*/
|