sec-edgar-api
Version:
Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.
10 lines (9 loc) • 324 B
TypeScript
import type { ReportTranslated } from '../../types';
type ExtendableReportProxy = {
new (report: ReportTranslated): ReportTranslated;
};
/**
* Used to make ReportWrapper implement ReportTranslated interface via proxy
*/
declare const ReportTranslatedProxy: ExtendableReportProxy;
export default ReportTranslatedProxy;