@nepse-helper/core
Version:
A helper library for NEPSE
34 lines (33 loc) • 1.04 kB
TypeScript
export declare const USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3";
export declare const ENDPOINTS: {
baseUrl: string;
assets: {
prod: {
cssWasm: string;
};
};
api: {
authenticate: {
getProve: string;
refreshToken: string;
};
nots: {
application: {
getDividend: (id: number) => string;
getCompanyNews: (id: number) => string;
getReports: (id: number) => string;
};
nepseData: {
getMarketOpen: string;
getTodayPrice: string;
getFloorSheet: string;
};
security: {
getSecurities: string;
getSecurity: (id: number) => string;
getProfile: (id: number) => string;
};
};
};
};
export declare const nepseApi: import("axios").AxiosInstance;