FIX minor issues after client-api TS migration merge

This commit is contained in:
Norbert de Langen 2019-07-06 15:30:28 +02:00
parent 0083afde5f
commit 74e48c5e09
3 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,7 @@
/* eslint no-underscore-dangle: 0 */
import isPlainObject from 'is-plain-object';
import { logger } from '@storybook/client-logger';
import addons, { StoryContext, StoryFn, Parameters } from '@storybook/addons';
import addons, { StoryContext, StoryFn, Parameters, OptionsParameter } from '@storybook/addons';
import Events from '@storybook/core-events';
import { toId } from '@storybook/router/utils';
@ -187,7 +187,7 @@ export default class ClientApi {
const fileName = m && m.id ? `${m.id}` : undefined;
const { hierarchyRootSeparator, hierarchySeparator } = this.getSeparators();
const baseOptions: Parameters['options'] = {
const baseOptions: OptionsParameter = {
hierarchyRootSeparator,
hierarchySeparator,
};

View File

@ -1,4 +1,3 @@
// /<reference types="webpack-env" />
/* eslint no-underscore-dangle: 0 */
import Events from '@storybook/core-events';

View File

@ -66,10 +66,10 @@ export default class StoryStore extends EventEmitter {
constructor(params: { channel: Channel }) {
super();
this._legacydata = ({} as any) as LegacyData;
this._data = ({} as any) as StoreData;
this._legacydata = {} as any;
this._data = {} as any;
this._revision = 0;
this._selection = ({} as any) as Selection;
this._selection = {} as any;
this._channel = params.channel;
this._error = undefined;
}