UNPKG
kuyin-webpack-plugins
Version:
latest (1.7.2)
1.7.2
1.7.1
1.7.0
1.6.0
1.5.0
1.3.0
1.0.0
custom webpack, enhanced-resolve plugins
kuyin-webpack-plugins
/
lib
/
plugins
/
MoveWebpackPlugin.d.ts
11 lines
(10 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Compiler
}
from
'webpack'
;
export
interface
MoveOptions
{
from
:
string
;
to
:
string
; }
export
declare
class
MovePlugin
{
options
:
MoveOptions
;
constructor
(
options
:
MoveOptions
);
apply
(
compiler
:
Compiler
):
void
; }