@jozsefsallai/userv
Version:
uCoz server status checker.
13 lines (12 loc) • 356 B
TypeScript
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>;
}