1 | import PluginsIndex from './commands/plugins/index.js';
|
2 | import PluginsInspect from './commands/plugins/inspect.js';
|
3 | import PluginsInstall from './commands/plugins/install.js';
|
4 | import PluginsLink from './commands/plugins/link.js';
|
5 | import PluginsReset from './commands/plugins/reset.js';
|
6 | import PluginsUninstall from './commands/plugins/uninstall.js';
|
7 | import PluginsUpdate from './commands/plugins/update.js';
|
8 | export declare const commands: {
|
9 | plugins: typeof PluginsIndex;
|
10 | 'plugins:inspect': typeof PluginsInspect;
|
11 | 'plugins:install': typeof PluginsInstall;
|
12 | 'plugins:link': typeof PluginsLink;
|
13 | 'plugins:reset': typeof PluginsReset;
|
14 | 'plugins:uninstall': typeof PluginsUninstall;
|
15 | 'plugins:update': typeof PluginsUpdate;
|
16 | };
|
17 | export declare const hooks: {
|
18 | update: import("@oclif/core").Hook<"update">;
|
19 | };
|