@mojojs/core
Version:
Real-time web framework
12 lines (11 loc) • 309 B
TypeScript
import type { App } from '../app.js';
/**
* Plugin generator command.
*/
declare function createPluginCommand(app: App, args: string[]): Promise<void>;
declare namespace createPluginCommand {
var hidden: boolean;
var description: string;
var usage: string;
}
export default createPluginCommand;