From 70344b899934fb01c37e5a48708ad766165b7163 Mon Sep 17 00:00:00 2001 From: Chris Herman Date: Wed, 19 Feb 2025 14:50:22 -0500 Subject: [PATCH] fix(types): unused types --- packages/cli/src/index.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 2040d150c7..e308bf70c0 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -14,15 +14,6 @@ import globalEmitter from './events'; import {findBuildConfigFiles, loadFlagshipCodeConfig} from './configs'; import {renderStatus} from './renderer'; -/** - * Options interface for the plugin command - * @interface PluginOptions - * @property {('debug'|'log'|'info'|'warn'|'error')} logLevel - Logging verbosity level - */ -interface PluginOptions { - logLevel: 'debug' | 'log' | 'info' | 'warn' | 'error'; -} - /** * Options interface for the prebuild command * @interface PrebuildOptions @@ -142,7 +133,7 @@ program .default(DEFAULT_LOG_LEVEL), ) .argument('', 'name of generated plugin') - .action((str: string, options: PluginOptions) => { + .action((str: string, options: any) => { // Command implementation moved to separate file });