@storybook/addon-knobs: add framework-specific entry points (#22939)

* @storybook/addon-knobs: add framework-specific entry points

* Update vue.d.ts

* PR feedback

* bue -> vue
This commit is contained in:
Joscha Feth
2018-04-10 06:02:16 +10:00
committed by Andy
parent 273c90ffb9
commit 4e9ecb03e4
5 changed files with 9 additions and 3 deletions

View File

@@ -0,0 +1 @@
export * from './index';

View File

@@ -1,4 +1,4 @@
// Type definitions for @storybook/addon-knobs 3.2
// Type definitions for @storybook/addon-knobs 3.3
// Project: https://github.com/storybooks/storybook
// Definitions by: Joscha Feth <https://github.com/joscha>
// Martynas Kadisa <https://github.com/martynaskadisa>

View File

@@ -0,0 +1 @@
export * from './index';

View File

@@ -27,7 +27,10 @@
"forceConsistentCasingInFileNames": true
},
"files": [
"angular.d.ts",
"index.d.ts",
"storybook__addon-knobs-tests.tsx"
"react.d.ts",
"storybook__addon-knobs-tests.tsx",
"vue.d.ts"
]
}
}

1
types/storybook__addon-knobs/vue.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
export * from './index';