pokemon-showdown/dev-tools/node.d.ts
Guangcong Luo 4c0699abc6 Implement inputLog
A battle's inputLog is now stored separately from the output log. It's
not an exact log of inputs, but rather just a collection of the inputs
that resulted in the battle: a default choice expands to the choice
that was actually used, and the starting seed is logged whether or not
it was explicitly passed into the battle stream.

Fixes #4348

Fixes #3201
2018-01-28 21:23:06 -06:00

11 lines
157 B
TypeScript

declare namespace NodeJS {
interface Global {
Dex: any
toId(input: any): string
Config: any
TeamValidator: any
Chat: any
__version: string
}
}