From 8596eadb25673a237d11132becdd650610094e55 Mon Sep 17 00:00:00 2001 From: Zack Campbell Date: Tue, 13 Dec 2016 19:43:49 -0600 Subject: [PATCH] Bring in latest typings fix (#982) --- typings/index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 6538718fb..95204c0f9 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1,6 +1,7 @@ // Type definitions for discord.js 10.0.1 // Project: https://github.com/hydrabolt/discord.js // Definitions by: acdenisSK (https://github.com/acdenisSK) +// License: MIT declare module "discord.js" { import { EventEmitter } from "events"; @@ -101,7 +102,7 @@ declare module "discord.js" { push(request: {}); } export class WebhookClient extends Webhook { - contructor(id: string, token: string, options?: ClientOptions); + constructor(id: string, token: string, options?: ClientOptions); options: ClientOptions; } export class Emoji { @@ -550,7 +551,7 @@ declare module "discord.js" { on(event: "launch", listener: (shard: Shard) => void): this; } export class ShardClientUtil { - contructor(client: Client); + constructor(client: Client); id: number; count: number; broadcastEval(script: string): Promise;