webpack/declarations/plugins/CleanPlugin.d.ts

17 lines
302 B
TypeScript
Raw Normal View History

2020-09-30 23:33:30 +08:00
/*
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn special-lint-fix` to update
*/
export interface CleanPluginArgument {
/**
* Log the assets that should be removed instead of delete them.
*/
dry?: boolean;
2020-10-01 00:02:14 +08:00
/**
* Is clean enabled.
*/
2020-09-30 23:33:30 +08:00
enabled?: boolean;
}