UNPKG

376 BTypeScriptView Raw
1import { Type } from '@angular/core';
2import { ICollection } from '../types';
3/**
4 * Wraps the story template into a component
5 *
6 * @param storyComponent
7 * @param initialProps
8 */
9export declare const createStorybookWrapperComponent: (selector: string, template: string, storyComponent: Type<unknown> | undefined, styles: string[], initialProps?: ICollection) => Type<any>;