node-djiparsetxt
Version:
command-line application that reads a DJI '.txt' file and outputs a json.
22 lines (21 loc) • 609 B
TypeScript
export declare class CliArguments {
get isEmpty(): boolean;
get print_header(): boolean;
get print_records(): boolean;
get file_paths(): string[];
get details(): boolean;
get output(): string | null;
get unscramble(): boolean;
get show_record(): number | null;
get pretty_print(): boolean;
get distrib(): boolean;
get csv(): boolean;
get jpeg(): boolean;
static print_usage(): void;
static print_help(): void;
private static optionsDescriptions;
private argv;
private _isEmpty;
constructor(args: string[]);
assert_args(): boolean;
}