pse-edge
Version:
A NodeJS wrapper for the PSE Edge platform
23 lines (22 loc) • 608 B
TypeScript
/**
* Gets company information of a ticker symbol
*/
export declare const getCompanyInfo: (sym: string) => Promise<StockCompanyInfo>;
export interface StockCompanyInfo {
companyName: string;
description: string;
sector: string;
subsector: string;
corporateLife: string;
incorporationDate: string;
numberOfDirectors: string;
stockholdersMeetingAsPerByLaws: string;
fiscalYear: string;
externalAuditor: string;
transferAgent: string;
businessAddress: string;
emailAddress: string;
telephoneNumber: string;
faxNumber: string;
website: string;
}