diff options
author | bptato <nincsnevem662@gmail.com> | 2023-06-08 08:03:16 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-06-08 08:03:16 +0200 |
commit | 00d7836d8a3d0101bd282e3acce58d65ed0220fe (patch) | |
tree | 70ff6f736277ab277bf527b4e3b79771bb7e3935 /src/js/intl.nim | |
parent | 23339918fa58f570a2b12bc7c7e78d4d8681b9a2 (diff) | |
download | chawan-00d7836d8a3d0101bd282e3acce58d65ed0220fe.tar.gz |
Remove JSObject again, add File API constructor
Diffstat (limited to 'src/js/intl.nim')
-rw-r--r-- | src/js/intl.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/intl.nim b/src/js/intl.nim index 28cc42d5..f37789ad 100644 --- a/src/js/intl.nim +++ b/src/js/intl.nim @@ -8,7 +8,7 @@ type #TODO ...yeah proc newNumberFormat(name: string = "en-US", - options = none(JSObject)): NumberFormat {.jsctor.} = + options = none(JSValue)): NumberFormat {.jsctor.} = return NumberFormat() #TODO: this should accept string/BigInt too |