Files
Shifted/node_modules/@storybook/builder-webpack5/dist/presets/custom-webpack-preset.d.ts
2026-02-10 01:14:19 +00:00

11 lines
449 B
TypeScript

import { PresetProperty, Options } from 'storybook/internal/types';
import * as webpackDep from 'webpack';
import { Configuration } from 'webpack';
declare const swc: PresetProperty<'swc'>;
declare function webpack(config: Configuration, options: Options): Promise<any>;
declare const webpackInstance: () => Promise<typeof webpackDep>;
declare const webpackVersion: () => Promise<string>;
export { swc, webpack, webpackInstance, webpackVersion };