mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:21:05 +08:00
fixes
This commit is contained in:
parent
df0b4fdbac
commit
012843f101
@ -1,7 +1,7 @@
|
||||
import type { Types } from '@storybook/addons';
|
||||
import type { Addon_Types } from '@storybook/types';
|
||||
|
||||
export default class Provider {
|
||||
getElements(_type: Types) {
|
||||
getElements(_type: Addon_Types) {
|
||||
throw new Error('Provider.getElements() is not implemented!');
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
import global from 'global';
|
||||
|
||||
import type { Channel } from '@storybook/channels';
|
||||
import { addons, AddonStore, type Types } from '@storybook/addons';
|
||||
import type { Addon_Config } from '@storybook/types';
|
||||
import { addons, AddonStore } from '@storybook/addons';
|
||||
import type { Addon_Types, Addon_Config } from '@storybook/types';
|
||||
import * as postMessage from '@storybook/channel-postmessage';
|
||||
import * as webSocket from '@storybook/channel-websocket';
|
||||
import { CHANNEL_CREATED } from '@storybook/core-events';
|
||||
@ -39,7 +39,7 @@ class ReactProvider extends Provider {
|
||||
}
|
||||
}
|
||||
|
||||
getElements(type: Types) {
|
||||
getElements(type: Addon_Types) {
|
||||
return this.addons.getElements(type);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user