From a4713505f07aab510115eb98183066fdd21044d0 Mon Sep 17 00:00:00 2001 From: jgmdev Date: Thu, 22 Sep 2022 12:37:07 -0400 Subject: [PATCH] docs: documented ARCH global. --- docs/api/globals.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/api/globals.lua b/docs/api/globals.lua index 98fe61b1..b32ff9af 100644 --- a/docs/api/globals.lua +++ b/docs/api/globals.lua @@ -4,6 +4,11 @@ ---@type table ARGS = {} +---The current platform tuple used for native modules loading, +---for example: "x86_64-linux", "x86_64-darwin", "x86_64-windows", etc... +---@type string +ARCH = "Architecture-OperatingSystem" + ---The current operating system. ---@type string | "'Windows'" | "'Mac OS X'" | "'Linux'" | "'iOS'" | "'Android'" PLATFORM = "Operating System"