UNPKG

sec-edgar-api

Version:

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

19 lines (18 loc) 564 B
import { RowNode } from './RowNode'; import { XMLNode } from './XMLNode'; export declare class ColNode extends XMLNode { private index; private topSiblings; private bottomSiblings; setIndex(index: number): void; getIndex(): number; getParent(): RowNode; addTopSibling(node: ColNode): void; addBottomSibling(node: ColNode): void; getTopSiblings(): ColNode[]; getBottomSiblings(): ColNode[]; getNextSibling(): ColNode | null; getPreviousSibling(): ColNode | null; getColSpan(): number; getRowSpan(): number; }