mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
e207f7e993
Co-authored-by: "yangjian.fe" <yangjian.fe@bytedance.com> Co-authored-by: underfin <likui6666666@gmail.com>
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
declare module '#builder' {
|
|
import type Webpack from 'webpack'
|
|
import type MiniCssExtractPlugin from 'mini-css-extract-plugin'
|
|
|
|
export const webpack: typeof Webpack
|
|
export const MiniCssExtractPlugin: typeof MiniCssExtractPlugin
|
|
export const builder: 'webpack' | 'rspack'
|
|
}
|