UNPKG

earningscall

Version:

The EarningsCall JavaScript library provides convenient access to the EarningsCall API. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses.

39 lines 923 B
import { EarningsEvent } from './event'; /** * Represents information about a company including its exchange listing, * symbol, name, and classification details. */ export type CompanyInfo = { exchange: string; symbol: string; name?: string; security_name?: string; sector?: string; industry?: string; }; /** * Options for retrieving a company. */ export interface GetCompanyOptions { symbol: string; exchange?: string; } export interface DownloadAudioFileOptions { year: number; quarter: number; outputFilePath?: string; } export interface DownloadAudioFileResponse { outputFilePath?: string; contentLength?: number; contentType?: string; lastModified?: Date; } export interface GetTranscriptOptions { year: number; quarter: number; } export interface GetTranscriptFromEventOptions { event: EarningsEvent; } //# sourceMappingURL=company.d.ts.map