Skip to content

Commit

Permalink
fix(types): unused types
Browse files Browse the repository at this point in the history
  • Loading branch information
crherman7 committed Feb 19, 2025
1 parent 8f17bd4 commit 70344b8
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -142,7 +133,7 @@ program
.default(DEFAULT_LOG_LEVEL),
)
.argument('<string>', 'name of generated plugin')
.action((str: string, options: PluginOptions) => {
.action((str: string, options: any) => {
// Command implementation moved to separate file
});

Expand Down

0 comments on commit 70344b8

Please sign in to comment.