UNPKG

node-djiparsetxt

Version:

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

13 lines (12 loc) 387 B
import { IRecordCache } from "../shared/interfaces"; import { Command } from "./Command"; export interface IRecords2CsvOptions { output: string | null; records: IRecordCache; } /** * Prints a csv representation of a IRecordCache object. */ export declare class Records2CsvCommand extends Command<IRecords2CsvOptions, string> { exec(options: IRecords2CsvOptions): string; }