@@ -3,7 +3,6 @@ import type { Compiler as WebpackCompiler, WebpackPluginInstance } from 'webpack
3
3
import type { Plugin as VitePlugin } from 'vite'
4
4
import type { Plugin as EsbuildPlugin } from 'esbuild'
5
5
import type VirtualModulesPlugin from 'webpack-virtual-modules'
6
- import type { Arrayable } from './utils'
7
6
8
7
export {
9
8
EsbuildPlugin ,
@@ -70,18 +69,20 @@ export interface ResolvedUnpluginOptions extends UnpluginOptions {
70
69
__virtualModulePrefix : string
71
70
}
72
71
73
- export type UnpluginFactory < UserOptions > = ( options : UserOptions , meta : UnpluginContextMeta ) =>
74
- Arrayable < UnpluginOptions >
72
+ export type UnpluginFactory < UserOptions , Nested extends boolean > = ( options : UserOptions , meta : UnpluginContextMeta ) =>
73
+ Nested extends true
74
+ ? Array < UnpluginOptions >
75
+ : UnpluginOptions
75
76
export type UnpluginFactoryOutput < UserOptions , Return > = undefined extends UserOptions
76
77
? ( options ?: UserOptions ) => Return
77
78
: ( options : UserOptions ) => Return
78
79
79
- export interface UnpluginInstance < UserOptions > {
80
- rollup : UnpluginFactoryOutput < UserOptions , Arrayable < RollupPlugin > >
81
- vite : UnpluginFactoryOutput < UserOptions , Arrayable < VitePlugin > >
80
+ export interface UnpluginInstance < UserOptions , Nested extends boolean > {
81
+ rollup : UnpluginFactoryOutput < UserOptions , Nested extends true ? Array < RollupPlugin > : RollupPlugin >
82
+ vite : UnpluginFactoryOutput < UserOptions , Nested extends true ? Array < VitePlugin > : VitePlugin >
82
83
webpack : UnpluginFactoryOutput < UserOptions , WebpackPluginInstance >
83
84
esbuild : UnpluginFactoryOutput < UserOptions , EsbuildPlugin >
84
- raw : UnpluginFactory < UserOptions >
85
+ raw : UnpluginFactory < UserOptions , Nested >
85
86
}
86
87
87
88
export type UnpluginContextMeta = Partial < RollupContextMeta > & ( {
0 commit comments