UNPKG

304 BTypeScriptView Raw
1import { Provider, InjectionToken } from '@angular/core';
2import { Subject } from 'rxjs';
3import { ICollection } from '../types';
4export declare const STORY_PROPS: InjectionToken<Subject<ICollection>>;
5export declare const storyPropsProvider: (storyProps$: Subject<ICollection | undefined>) => Provider;