sec-edgar-api
Version:
Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.
9 lines (8 loc) • 343 B
TypeScript
import { Form13GData, XMLParams } from '../../../types';
import XMLParser from '../XMLParserLegacy';
/**
* Form SC 13G - Institutional Holders
*
* example at https://www.sec.gov/Archives/edgar/data/320193/000119312523038262/d382361dsc13ga.htm
*/
export declare function parseForm13g(params: XMLParams, xmlParser?: XMLParser): Form13GData;