UNPKG

@point-hub/papi

Version:

Point API Framework

17 lines (15 loc) 321 B
import { BaseCommand } from '@point-hub/express-cli' export default class NewCommand extends BaseCommand { constructor() { super({ name: '[name]', description: '[description]', summary: '[summary]', arguments: [], options: [] }) } async handle(): Promise<void> { // } }