UNPKG

storybook-addon-vue-info

Version:

Storybook addon that shows Vue component information

7 lines (6 loc) 214 B
import { AnyComponent } from '../types/vue'; export interface LookupResult { name: string; component: AnyComponent; } export declare function lookupGlobalComponent(name: string): LookupResult | null;