node-djiparsetxt
Version:
command-line application that reads a DJI '.txt' file and outputs a json.
10 lines (9 loc) • 369 B
TypeScript
import { ServiceManager } from "../common/ServiceManager";
export declare abstract class Command<ParamsType = void, ReturnType = void> {
protected serviceMan: ServiceManager;
private _logs;
constructor(serviceMan: ServiceManager);
abstract exec(params: ParamsType): ReturnType;
protected log(...args: any[]): void;
protected getLog(): string;
}