Skip to main content

inflix

Requires.io

Inflix is an easy-to-use Discord API wrapper for Deno.

Instillation

import Inflix from "https://deno.land/x/inflix/index.ts";

Usage

Example

import Inflix from "https://deno.land/x/inflix/index.ts";

const client = new Inflix.Client();
client.login("Your Token Here");

client.on("ready", () => {
  console.log("Bot Online");
});

Documentation

Events

  • guild_create
    @param guild Guild
  • message_create
    @param message Message
  • message_update
    @param message Message
  • ready
  • typing_start
    @param user User

Client

Methods
  • login
    @param token string
Properties
  • user
    @type ClientUser

Client User

Properties
  • username
    @type string
  • discriminator
    @type string | number
  • verified
    @type boolean
  • id
    @type string
  • flags
    @type number
  • email
    @type string
  • bot
    @type boolean
  • avatar
    @type string

License

License

Copyright (c) 2021 BumpyBill

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: