node-djiparsetxt
Version:
command-line application that reads a DJI '.txt' file and outputs a json.
9 lines (8 loc) • 308 B
TypeScript
import { Command } from "./Command";
import { IFile, IRecordCache } from "../shared/interfaces";
export interface IParseRecordsOptions {
file: IFile;
}
export declare class ParseRecordsCommand extends Command<IParseRecordsOptions, IRecordCache> {
exec(options: IParseRecordsOptions): IRecordCache;
}