From f60530298eb1821e951695bd0f58db16e7600c5c Mon Sep 17 00:00:00 2001 From: FabioRosado Date: Sat, 22 Oct 2022 17:16:52 +0100 Subject: [PATCH] More typing to base.ts --- pyscriptjs/src/runtime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyscriptjs/src/runtime.ts b/pyscriptjs/src/runtime.ts index 37b560eeac5..7aab55501bf 100644 --- a/pyscriptjs/src/runtime.ts +++ b/pyscriptjs/src/runtime.ts @@ -35,7 +35,7 @@ export abstract class Runtime extends Object { /** * global symbols table for the underlying interpreter. * */ - abstract globals: any; + abstract globals: Map; constructor(config: AppConfig) { super();