sec-edgar-api
Version:
Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.
12 lines (11 loc) • 326 B
TypeScript
import type { XbrlSchema } from '../../../types/xbrl.type';
export default class SchemaParser {
private readonly xmlParser;
private parseAppInfo;
private parseRoleType;
private parseLinkbaseRef;
private parseAnnotation;
private parseElement;
private parseImport;
parse(xml: any): XbrlSchema;
}