@storybook/angular
Version:
Storybook for Angular: Develop Angular components in isolation with hot reloading.
6 lines (5 loc) • 316 B
TypeScript
import { InjectionToken, Provider } from '@angular/core';
import { Subject } from 'rxjs';
import { ICollection } from '../types';
export declare const STORY_PROPS: InjectionToken<Subject<ICollection | undefined>>;
export declare const storyPropsProvider: (storyProps$: Subject<ICollection | undefined>) => Provider;