mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
FIX minor issues after client-api TS migration merge
This commit is contained in:
parent
0083afde5f
commit
74e48c5e09
@ -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,
|
||||
};
|
||||
|
@ -1,4 +1,3 @@
|
||||
// /<reference types="webpack-env" />
|
||||
/* eslint no-underscore-dangle: 0 */
|
||||
|
||||
import Events from '@storybook/core-events';
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user