@storybook/test 0.0.0-pr-27423-sha-1f1adcc7 → 0.0.0-pr-28385-sha-9aab3bd7
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/dist/index.js +26 -27
- package/dist/index.mjs +26 -27
- package/package.json +15 -13
package/dist/index.d.ts
CHANGED
@@ -161,9 +161,11 @@ declare function mocked<T>(item: T, options: {
|
|
161
161
|
declare function mocked<T>(item: T): MaybeMocked<T>;
|
162
162
|
|
163
163
|
type Queries = ReturnType<typeof within<typeof queries>>;
|
164
|
-
declare module '@storybook/
|
164
|
+
declare module '@storybook/csf' {
|
165
165
|
interface Canvas extends Queries {
|
166
166
|
}
|
167
|
+
interface StoryContext {
|
168
|
+
}
|
167
169
|
}
|
168
170
|
declare const expect: Expect;
|
169
171
|
|