@modern-js/module-tools-v2
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
7 lines • 506 B
TypeScript
import type { Command } from '@modern-js/utils';
import type { PluginAPI } from '@modern-js/core';
import type { ModuleToolsHooks } from './types/hooks';
export declare const buildCommand: (program: Command, api: PluginAPI<ModuleToolsHooks>) => Promise<void>;
export declare const devCommand: (program: Command, api: PluginAPI<ModuleToolsHooks>) => Promise<void>;
export declare const newCommand: (program: Command) => Promise<void>;
export declare const upgradCommand: (program: Command) => Promise<void>;