UNPKG

growwapi

Version:
10 lines (9 loc) 242 B
import { HttpClient } from '../utils/http'; export class Holdings { constructor(baseUrl) { this.http = new HttpClient(baseUrl, '/holdings/user'); } async list() { return (await this.http.get('')).holdings; } }