node-djiparsetxt
Version:
command-line application that reads a DJI '.txt' file and outputs a json.
11 lines (10 loc) • 370 B
TypeScript
/// <reference types="node" />
import { Command } from "./Command";
import { IFile, IRecordCache } from "../shared/interfaces";
export interface ISerializeRecordsOptions {
file: IFile;
records: IRecordCache;
}
export declare class SerializeRecordsCommand extends Command<ISerializeRecordsOptions, Buffer> {
exec(options: ISerializeRecordsOptions): Buffer;
}