UNPKG

qif-ts

Version:

Typescript library to map QIF formatted data

11 lines (10 loc) 278 B
import { QifData } from './types'; /** * Deserializes a valid QIF formatted string. * * @param data - The string to be deserialized * @returns A QifData object describing the data in the input * * @public */ export declare function deserializeQif(data: string): QifData;