mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 21:31:48 +08:00
18 lines
383 B
TypeScript
18 lines
383 B
TypeScript
import type { Types } from '@storybook/addons';
|
|
|
|
export default class Provider {
|
|
getElements(_type: Types) {
|
|
throw new Error('Provider.getElements() is not implemented!');
|
|
}
|
|
|
|
handleAPI(_api: unknown) {
|
|
throw new Error('Provider.handleAPI() is not implemented!');
|
|
}
|
|
|
|
getConfig() {
|
|
console.error('Provider.getConfig() is not implemented!');
|
|
|
|
return {};
|
|
}
|
|
}
|