0.5.21 • Published 11 months ago

frenzy-api v0.5.21

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Frenzy API

frenzy-api

This package contains typings for objects in the Frenzy API and a fully typed API request builder.

Example Usage

If you just need access to types:

import type { User } from 'frenzy-api';

If you want to send requests:

import { API } from 'frenzy-api';

// Initialise a new API client:
const client = new API();

// or with authentication:
const client = new API({ authentication: { revolt: 'bot-token' } });

// Make requests with ease:
client.get('/users/@me')
    // Fully typed responses!
    .then(user => user.username);

// No need to worry about the details:
let channel_id = "some channel id";
client.post(`/channels/${channel_id}/messages`, {
    // Parameters given are fully typed as well!
    content: "some content"
});

For more details on how this works, see the README of @insertish/oapi.

0.5.21

11 months ago

0.5.20

11 months ago

0.5.19

11 months ago