UNPKG

nse-data

Version:

NSE (National Stock Exchange) - Stock & Indices Data API

10 lines (7 loc) 263 B
import { IndexList } from "./index-list.types"; import { config } from "../../common/config"; import { get } from "../../common/http"; export const indexList = async (): Promise<IndexList> => { return await get(config.endpoints.indexList); }; // indexList();