UNPKG

@axiomhq/js

Version:

The official javascript bindings for the Axiom API

14 lines (11 loc) 274 B
import HTTPClient from './httpClient.js'; export namespace users { export interface User { id: string; name: string; emails: Array<string>; } export class Service extends HTTPClient { current = (): Promise<User> => this.client.get('/v1/user'); } }