UNPKG

node-djiparsetxt

Version:

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

14 lines (13 loc) 418 B
import { Command } from "./Command"; import { IFile } from "../shared/interfaces"; export interface IPrintInfoOptions { printHeader: boolean; printRecords: boolean; printDetails: boolean; printDistribution: boolean; file: IFile; } export declare class PrintInfoCommand extends Command<IPrintInfoOptions, string> { exec(options: IPrintInfoOptions): string; private print_type_count_table; }