diff options
author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-06-01 15:27:57 -0500 |
---|---|---|
committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-06-01 15:27:57 -0500 |
commit | 823b8728b5506697b7d305a8c07979984b8351c8 (patch) | |
tree | b624d39cb321afc91e97d74ae352478eb89e6263 /src/client/util/Scripting.ts | |
parent | 162de1972ec5011dce11eeffbe280672a147d989 (diff) |
adding descriptions and params to methods
Diffstat (limited to 'src/client/util/Scripting.ts')
-rw-r--r-- | src/client/util/Scripting.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/util/Scripting.ts b/src/client/util/Scripting.ts index 817e6b29d..00b01a75a 100644 --- a/src/client/util/Scripting.ts +++ b/src/client/util/Scripting.ts @@ -49,7 +49,6 @@ export function isCompileError(toBeDetermined: CompileResult): toBeDetermined is export namespace Scripting { export function addGlobal(global: { name: string }): void; export function addGlobal(name: string, global: any): void; - export function addGlobal(global: { name: string }, decription?: string, params?: any): void; export function addGlobal(nameOrGlobal: any, global?: any, params?: any) { |