@storybook/csf 0.1.12-next.1 → 0.1.13-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
*/
|