UNPKG

node-djiparsetxt

Version:

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

9 lines (8 loc) 303 B
import { IRecordCache } from "../shared/interfaces"; import { Command } from "./Command"; export interface IUnscrambleOptions { records: IRecordCache; } export declare class UnscrambleCommand extends Command<IUnscrambleOptions, IRecordCache> { exec(options: IUnscrambleOptions): IRecordCache; }