summaryrefslogtreecommitdiff
path: root/js/os.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/os.ts')
-rw-r--r--js/os.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/os.ts b/js/os.ts
index 5dc5521b4..ca227e5fd 100644
--- a/js/os.ts
+++ b/js/os.ts
@@ -108,7 +108,7 @@ function createEnv(inner: msg.EnvironRes): { [index: string]: string } {
}
return new Proxy(env, {
- set(obj, prop: string, value: string) {
+ set(obj, prop: string, value: string): boolean {
setEnv(prop, value);
return Reflect.set(obj, prop, value);
}