node-djiparsetxt
Version:
command-line application that reads a DJI '.txt' file and outputs a json.
13 lines (12 loc) • 406 B
TypeScript
import { RecordTypes } from "../services/RecordTypes";
import { Command } from "./Command";
import { IRecordCache } from "../shared/interfaces";
export interface IShowTypeOptions {
records: IRecordCache;
output: string | null;
type: RecordTypes;
file: string;
}
export declare class ShowTypeCommand extends Command<IShowTypeOptions, string> {
exec(options: IShowTypeOptions): string;
}