UNPKG

adif-parser-ts

Version:

An amateur radio log data ADIF parser in Typescript and Javascript

16 lines (15 loc) 386 B
import { SimpleAdif } from './simple-adif'; /** * A class for formatting objects into ADIF. */ export declare class AdifFormatter { private readonly obj; /** * Format the given object into an ADIF string. */ static formatAdi(obj: SimpleAdif): string; private constructor(); private format; private static formatTags; private static prepReturn; }