3.0.1 - removed unused import

This commit is contained in:
hydrabolt
2015-08-26 08:25:13 +01:00
parent 0f1fbf1eb6
commit b5131b55ee
5 changed files with 1 additions and 13 deletions

View File

@@ -4,8 +4,6 @@ var _createClass = (function () { function defineProperties(target, props) { for
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var User = require("./user.js").User;
var Invite = (function () {
function Invite(data, client) {
_classCallCheck(this, Invite);

View File

@@ -4,10 +4,6 @@ var _createClass = (function () { function defineProperties(target, props) { for
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var User = require("./user.js").User;
var List = require("./list.js").List;
var PMChannel = require("./PMChannel.js").PMChannel;
var Message = (function () {
function Message(data, channel, mentions, author) {
_classCallCheck(this, Message);

View File

@@ -1,6 +1,6 @@
{
"name": "discord.js",
"version": "3.0.0",
"version": "3.0.1",
"description": "A way to interface with the Discord API",
"main": "./lib/index.js",
"scripts": {

View File

@@ -1,5 +1,3 @@
var User = require("./user.js").User;
class Invite {
constructor(data, client) {
this.max_age = data.max_age;

View File

@@ -1,7 +1,3 @@
var User = require( "./user.js" ).User;
var List = require( "./list.js" ).List;
var PMChannel = require( "./PMChannel.js" ).PMChannel;
class Message{
constructor(data, channel, mentions, author){
this.tts = data.tts;