sec-edgar-api
Version:
Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.
10 lines (9 loc) • 440 B
TypeScript
import type { ReportTranslated } from '../types/report-translated.type';
/**
* @deprecated use calculationMap for ReportResolvable
*
* Checks if any of the array keys exist in the object to assign to the translated key
* These were checked against Yahoo Finance values, adding the ones that most often matched the yahoo values
*/
declare const keyTranslations: Record<keyof ReportTranslated, string[]>;
export default keyTranslations;