Skip to content

Commit 47a74b9

Browse files
committed
Added $clearTimeout and $clearInterval
1 parent f1a3c72 commit 47a74b9

File tree

180 files changed

+550
-352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+550
-352
lines changed

dist/core/ForgeClient.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/// <reference types="node" />
12
import { ClientOptions, Client, IntentsBitField, Message } from "discord.js";
23
import { IExtendedCompilationResult } from ".";
34
import { NativeCommandManager, EventManager, CooldownManager, ForgeFunctionManager, ApplicationCommandManager, ThreadManager, BaseCommandManager } from "../managers";
@@ -76,6 +77,8 @@ export declare class ForgeClient extends Client<true> {
7677
readonly functions: ForgeFunctionManager;
7778
readonly threading: ThreadManager;
7879
readonly websockets: Map<number, WebSocket>;
80+
readonly timeouts: Map<string, NodeJS.Timeout>;
81+
readonly intervals: Map<string, NodeJS.Timeout>;
7982
readonly globalVariables: Record<string, string>;
8083
[x: PropertyKey]: unknown;
8184
constructor(options: IRawForgeClientOptions);

dist/core/ForgeClient.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/ForgeClient.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/ForgeClient.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)