mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import Command from '../../base-command';
|
|
|
|
export default class ResetConfig extends Command<typeof ResetConfig> {
|
|
static description = 'resets local cli configuration';
|
|
|
|
async run() {
|
|
this.userConfig.clear();
|
|
this.success('Config cleared.');
|
|
}
|
|
}
|