UNPKG

node-djiparsetxt

Version:

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

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