Skip to content

Commit 9171309

Browse files
author
Alex D
committed
fixes
1 parent 685ff96 commit 9171309

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/emitterlua.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ export class EmitterLua {
288288
throw new Error("Prototype can\'t be undefined or null");\
289289
} \
290290
\
291-
const obj = <any>{ \
291+
const obj = { \
292292
__index: __get_call_undefined__, \
293293
__proto: proto, \
294294
__newindex: __set_call_undefined__, \

test/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
declare var os: any;
1+
declare var os;
22

33
os.time();

0 commit comments

Comments
 (0)