node-djiparsetxt
Version:
command-line application that reads a DJI '.txt' file and outputs a json.
11 lines (10 loc) • 352 B
TypeScript
import { IRecordCache } from "../shared/interfaces";
import { Command } from "./Command";
export interface IRecords2JsonOptions {
prettyPrint: boolean;
output: string | null;
records: IRecordCache;
}
export declare class Records2JsonCommand extends Command<IRecords2JsonOptions, string> {
exec(options: IRecords2JsonOptions): string;
}