UNPKG

419 BTypeScriptView Raw
1import { WebRenderer } from '@storybook/types';
2import { Component, AsyncComponent } from 'vue';
3
4type StoryFnVueReturnType = Component<any, any, any, any> | AsyncComponent<any, any, any, any>;
5interface VueRenderer extends WebRenderer {
6 component: Component<any, any, any, any> | AsyncComponent<any, any, any, any>;
7 storyResult: StoryFnVueReturnType;
8}
9
10export { StoryFnVueReturnType as S, VueRenderer as V };