@storybook/types 7.0.0-alpha.44
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/README.md +8 -0
- package/dist/index.d.ts +2744 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +64 -0
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Storybook Types
|
|
2
|
+
|
|
3
|
+
Storybook types exports only typescript types for storybook usage.
|
|
4
|
+
|
|
5
|
+
It exports typescript enums, which do have a runtime implementation.
|
|
6
|
+
But it should not export any implementation such as classes, method, function or constants.
|
|
7
|
+
|
|
8
|
+
It also has no dependencies, all the types it exports are bundled in.
|