12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import { defineCommand } from '../utils/defineCommand';
|
|
import * as wxt from '../..';
|
|
|
|
export const clean = defineCommand<
|
|
[
|
|
root: string | undefined,
|
|
flags: {
|
|
debug?: boolean;
|
|
},
|
|
]
|
|
>(wxt.clean);
|