UNPKG

316 BTypeScriptView Raw
1/// <reference types="webpack-env" />
2import StoryStore from './story_store';
3export default class ConfigApi {
4 _storyStore: StoryStore;
5 constructor({ storyStore }: {
6 storyStore: StoryStore;
7 });
8 configure: (loaders: () => void, module: NodeModule, showDeprecationWarning?: boolean) => void;
9}