UNPKG

node-djiparsetxt

Version:

command-line application that reads a DJI '.txt' file and outputs a json.

11 lines (10 loc) 296 B
/// <reference types="node" /> import { Command } from "./Command"; export interface IOutputOptions { file: string; buffer: Buffer | string; output: string | null; } export declare class OutputCommand extends Command<IOutputOptions, void> { exec(options: IOutputOptions): void; }