diff options
author | carsakiller <61925890+carsakiller@users.noreply.github.com> | 2022-11-28 13:10:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 13:10:19 -0500 |
commit | 8d10822a1a3a3427d3b0f102060fce64cd568366 (patch) | |
tree | 4416b49d95df002c89b493a021f972c9fcc5e45d /locale/zh-cn | |
parent | 7400644545baad38c0830c2cbb596f51b88316e5 (diff) | |
download | lua-language-server-8d10822a1a3a3427d3b0f102060fce64cd568366.zip |
add: literal enum example to `@alias` #1685 (#1730)
Diffstat (limited to 'locale/zh-cn')
-rw-r--r-- | locale/zh-cn/script.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/locale/zh-cn/script.lua b/locale/zh-cn/script.lua index 3c7a7fd2..cc77ad79 100644 --- a/locale/zh-cn/script.lua +++ b/locale/zh-cn/script.lua @@ -721,6 +721,20 @@ function find(path, pattern) end ---@param style font-style Style to apply function setFontStyle(style) end ``` + +### Literal Enum +``` +local enums = { + READ = 0, + WRITE = 1, + CLOSED = 2 +} + +---@alias FileStates +---| `enums.READ` +---| `enums.WRITE` +---| `enums.CLOSE` +``` --- [View Wiki](https://github.com/sumneko/lua-language-server/wiki/Annotations#alias) ]=] |