UNPKG

@plexus-interop/cli

Version:

Plexus Interop CLI tools

13 lines (12 loc) 450 B
import { Option } from './Option'; import { BaseCommand } from './BaseCommand'; export declare class GenTsCommand extends BaseCommand { readonly protoRegexp: RegExp; readonly descriptorPathRegexp: RegExp; clientGenArgs: (opts: any) => string[]; name: () => string; generalDescription: () => string; options: () => Option[]; action(opts: any): Promise<void>; isProtoDescriptorPath(path: string): boolean; }