UNPKG

829 BTypeScriptView Raw
1import PluginsIndex from './commands/plugins/index.js';
2import PluginsInspect from './commands/plugins/inspect.js';
3import PluginsInstall from './commands/plugins/install.js';
4import PluginsLink from './commands/plugins/link.js';
5import PluginsReset from './commands/plugins/reset.js';
6import PluginsUninstall from './commands/plugins/uninstall.js';
7import PluginsUpdate from './commands/plugins/update.js';
8export 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};
17export declare const hooks: {
18 update: import("@oclif/core").Hook<"update">;
19};