UNPKG

@sodacore/cli

Version:

Sodacore CLI is a plugin that offers CLI functionality within the framework.

13 lines (12 loc) 415 B
import type { IConfig } from '../../types'; import { type Application, BasePlugin, type IPlugin } from '@sodacore/core'; export default class CliPlugin extends BasePlugin implements IPlugin { protected config: IConfig; name: any; version: any; description: any; author: any; constructor(config?: IConfig); install(app: Application): Promise<void>; } //# sourceMappingURL=plugin.d.ts.map