UNPKG

@plexus-interop/cli

Version:

Plexus Interop CLI tools

10 lines (9 loc) 324 B
import { Option } from './Option'; import { BaseCommand } from './BaseCommand'; export declare class GenCSharpCommand extends BaseCommand { clientGenArgs: (opts: any) => string[]; name: () => string; generalDescription: () => string; options: () => Option[]; action(opts: any): Promise<void>; }