UNPKG

growwapi

Version:
23 lines (22 loc) 757 B
import { Auth } from './resources/auth'; import { HistoricData } from './resources/historicData'; import { Holdings } from './resources/holdings'; import { Instructions } from './resources/instructions'; import { LiveData } from './resources/liveData'; import { LiveFeed } from './resources/liveFeed'; import { Margins } from './resources/margins'; import { Orders } from './resources/order'; import { Positions } from './resources/positions'; export * from './types'; export declare class GrowwAPI { auth: Auth; liveFeed: LiveFeed; historicData: HistoricData; holdings: Holdings; instructions: Instructions; liveData: LiveData; margins: Margins; orders: Orders; position: Positions; constructor(baseUrl?: string); }