Files
wxt/src/cli/commands/clean.ts
T

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);