FIX types

This commit is contained in:
Norbert de Langen 2019-07-10 00:16:41 +02:00
parent 1440e25076
commit f4479514cc
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
import addons from '@storybook/addons';
import addons, { Parameters } from '@storybook/addons';
import deprecate from 'util-deprecate';
import { normalize, sep } from 'upath';
import { ADD_TESTS } from './shared';
interface AddonParameters {
interface AddonParameters extends Parameters {
jest?: string | string[] | { disable: true };
}

View File

@ -31,7 +31,7 @@ export interface IStorybookSection {
export interface StoryFnAngularReturnType {
component?: any;
props: ICollection;
props?: ICollection;
propsMeta?: ICollection;
moduleMetadata?: NgModuleMetadata;
template?: string;