ez1cli
Version:
NodeJS command line API client and library for APSystems EZ1-(M|H) microinverters API
13 lines (12 loc) • 485 B
TypeScript
import { Command } from '@oclif/core';
import { IResponse } from "../../lib/api.js";
export default class Get extends Command {
static args: {
command: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
ip: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
};
static description: string;
static enableJsonFlag: boolean;
static examples: string[];
run(): Promise<IResponse>;
}