CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
ProdigyPNP

CoCalc is a real-time collaborative commercial alternative to JupyterHub and Overleaf that provides Jupyter Notebooks, LaTeX documents, and SageMath.

GitHub Repository: ProdigyPNP/ProdigyMathGameHacking
Path: blob/master/typings/debugMisc.d.ts
Views: 713
1
import { Game } from "./game";
2
3
export declare interface DebugMisc {
4
addPlayerTimer: null;
5
attackDamageCache: unknown;
6
bountyOverrides: unknown;
7
fakePlayerActions: unknown[];
8
fakePlayers: Map<unknown, unknown>;
9
game: Game;
10
generatedRandomPlayers: unknown[];
11
hatSwitchEvent: null;
12
stressTests: {
13
emitters: unknown[];
14
playerContainers: unknown[];
15
};
16
updatePlayerTimer: null;
17
_joinDelay: unknown;
18
_playerLimit: null;
19
disableTimeoutDialogue(): void;
20
[index: string]: TODO;
21
}
22
23