1.0.5 • Published 3 years ago

@up2tom/tom-clients v1.0.5

Weekly downloads
35
License
UNLICENSED
Repository
-
Last release
3 years ago

tom-clients

This package contains clients that can interact with the UP2TOM API

Usage

import { RestClient } from "@up2tom/tom-clients";

const token = "some-api-token"
const client = new RestClient(token);

client.models()
  .then(models => console.log(models))
  .catch(e) => console.err(e));