UNPKG

430 BTypeScriptView Raw
1import { Plugin } from '@design-systems/plugin';
2export interface CleanArgs {
3 /** Do not delete the node_modules */
4 noModules?: boolean;
5 /** Don't delete the built dist directories */
6 noDist?: boolean;
7}
8/** A plugin to reset a project back to a clean starting state. */
9export default class CleanPlugin implements Plugin<CleanArgs> {
10 run(args?: CleanArgs): Promise<void>;
11}
12//# sourceMappingURL=index.d.ts.map
\No newline at end of file