UNPKG

node-djiparsetxt

Version:

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

8 lines (7 loc) 343 B
import BaseService from "./BaseService"; import { IRecord, IRecordCache, IRowObject } from "../shared/interfaces"; export declare class CacheTransformService extends BaseService { unscramble(recordsCache: IRecordCache): void; cache_as_rows(recordsCache: IRecordCache): IRecord[][]; rows_to_json(rows: IRecord[][]): IRowObject[]; }