Interface SuperCommandRoute

interface SuperCommandRoute {
    args: SuperCommandArg[];
    description: string;
    func: Function;
    name: string;
}

Properties

description: string
func: Function
name: string