This commit is contained in:
Norbert de Langen 2022-10-26 18:01:16 +02:00
parent df0b4fdbac
commit 012843f101
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
2 changed files with 5 additions and 5 deletions

View File

@ -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!');
}

View File

@ -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);
}