sec-edgar-toolkit
Version:
Open source toolkit to facilitate working with the SEC EDGAR database
13 lines • 588 B
TypeScript
/**
* XBRL endpoints for SEC EDGAR API
*/
import { HttpClient } from '../utils';
import { RequestOptions } from '../types';
export declare class XbrlEndpoints {
private httpClient;
constructor(httpClient: HttpClient);
getCompanyFacts(cik: string | number): Promise<Record<string, any>>;
getCompanyConcept(cik: string | number, taxonomy: string, tag: string, unit?: string): Promise<Record<string, any>>;
getFrames(taxonomy: string, tag: string, unit: string, year: number, options?: RequestOptions): Promise<Record<string, any>>;
}
//# sourceMappingURL=xbrl.d.ts.map