UNPKG

@jozsefsallai/userv

Version:
13 lines (12 loc) 356 B
import { Command } from '@oclif/core'; export default class Check extends Command { static description: string; static examples: string[]; static args: { name: string; required: boolean; }[]; getInputType(input: string): string | boolean; getNameByIp(ip: string): Promise<string | null>; run(): Promise<void>; }