sec-edgar-api
Version:
Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.
13 lines (12 loc) • 539 B
TypeScript
import type { CalculationMap, CalculationMapCondensed } from '../types/calculation-map.type';
declare function expandMap<T>(map: CalculationMapCondensed<T>): CalculationMap<T>;
declare function condenseMap<T>(map: CalculationMap<T>): CalculationMapCondensed<T>;
/**
* Used for expanding and condensing calculation maps. Calculation maps are used in secEdgarApi.getReports
* to map values from the SEC to the reports.
*/
export declare const utilMap: {
expandMap: typeof expandMap;
condenseMap: typeof condenseMap;
};
export {};