UNPKG

sec-edgar-api

Version:

Fetch and parse SEC earnings reports and other filings. Useful for financial analysis.

34 lines (33 loc) 2.11 kB
import { resolveAssetCurrent } from './resolve-asset-current'; import { resolveAssetNonCurrentPPEGross } from './resolve-asset-non-current-ppe-gross'; import { resolveCashFlowCapex } from './resolve-cash-flow-capex'; import { resolveCashFlowFree } from './resolve-cash-flow-free'; import { resolveCashFlowOperating } from './resolve-cash-flow-operating'; import { resolveCashFlowWorkingCapitalNonCash } from './resolve-cash-flow-working-capital-non-cash'; import { resolveEbit } from './resolve-ebit'; import { resolveExpenseDepreciation } from './resolve-expense-depreciation'; import { resolveExpenseOperating } from './resolve-expense-operating'; import { resolveExpenseTotal } from './resolve-expense-total'; import { resolveFiscalYearCumulativeProperties } from './resolve-fiscal-year-cumulative-properties'; import { resolveLiabilityCurrent } from './resolve-liability-current'; import { resolveQ4FiscalYearMatchingProperties } from './resolve-q4-fiscal-year-matching-properties'; import { resolveRevenueTotal } from './resolve-revenue-total'; import { resolveSplitRatio } from './resolve-split-ratio'; declare const resolvers: { resolveAssetNonCurrentPPEGross: typeof resolveAssetNonCurrentPPEGross; resolveExpenseDepreciation: typeof resolveExpenseDepreciation; resolveExpenseOperating: typeof resolveExpenseOperating; resolveCashFlowFree: typeof resolveCashFlowFree; resolveEbit: typeof resolveEbit; resolveAssetCurrent: typeof resolveAssetCurrent; resolveCashFlowCapex: typeof resolveCashFlowCapex; resolveFiscalYearCumulativeProperties: typeof resolveFiscalYearCumulativeProperties; resolveRevenueTotal: typeof resolveRevenueTotal; resolveExpenseTotal: typeof resolveExpenseTotal; resolveCashFlowOperating: typeof resolveCashFlowOperating; resolveLiabilityCurrent: typeof resolveLiabilityCurrent; resolveQ4FiscalYearMatchingProperties: typeof resolveQ4FiscalYearMatchingProperties; resolveCashFlowWorkingCapitalNonCash: typeof resolveCashFlowWorkingCapitalNonCash; resolveSplitRatio: typeof resolveSplitRatio; }; export default resolvers;