UNPKG

winterspec

Version:

Write Winter-CG compatible routes with filesystem routing and tons of features

9 lines (8 loc) 308 B
import { Command } from "commander"; import { ResolvedWinterSpecConfig } from "../config/utils.js"; export declare abstract class BaseCommand { program: Command; constructor(program: Command); protected loadConfig(cmdObj: any): Promise<ResolvedWinterSpecConfig>; abstract register(): void; }