summaryrefslogtreecommitdiff
path: root/doc/zh-cn
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-06-25 04:02:25 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-06-25 04:02:25 +0800
commit7b809496a5a4be6a182d715b264493cb39c98674 (patch)
treec11adeb7dbaa012b0efba10c5b13c2015d96e541 /doc/zh-cn
parenteff02b11a8186ef25f35aa34be2e59470fd69cb3 (diff)
downloadlua-language-server-7b809496a5a4be6a182d715b264493cb39c98674.zip
update doc
Diffstat (limited to 'doc/zh-cn')
-rw-r--r--doc/zh-cn/config.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/zh-cn/config.md b/doc/zh-cn/config.md
index ac819e07..76e56370 100644
--- a/doc/zh-cn/config.md
+++ b/doc/zh-cn/config.md
@@ -1417,6 +1417,41 @@ boolean | null
null
```
+# type.castNumberToInteger
+
+允许将 `number` 类型赋给 `integer` 类型。
+
+## type
+
+```ts
+boolean
+```
+
+## default
+
+```jsonc
+false
+```
+
+# type.weakUnionCheck
+
+联合类型中只要有一个子类型满足条件,则联合类型也满足条件。
+
+此设置为 `false` 时,`number|boolean` 类型无法赋给 `number` 类型;为 `true` 时则可以。
+
+
+## type
+
+```ts
+boolean
+```
+
+## default
+
+```jsonc
+false
+```
+
# window.progressBar
在状态栏显示进度条。