File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 66-- Globals
77---- --------------------------------------------------------------------
88
9- --- Current operating system type (e.g. "linux", "darwin", "windows")
10- --- @type string
11- OS_TYPE = " "
12-
13- --- Current architecture type (e.g. "amd64", "arm64")
14- --- @type string
15- ARCH_TYPE = " "
16-
179--- @class Runtime
1810--- @field osType string Operating system type (e.g. " linux" , " darwin" , " windows" )
1911--- @field archType string Architecture type (e.g. " amd64" , " arm64" )
2012--- @field version string Runtime version
2113--- @field pluginDirPath string Path to the plugin directory
2214RUNTIME = {}
2315
16+ --- @deprecated Use RUNTIME.osType instead
17+ --- @type string
18+ OS_TYPE = " "
19+
20+ --- @deprecated Use RUNTIME.archType instead
21+ --- @type string
22+ ARCH_TYPE = " "
23+
2424---- --------------------------------------------------------------------
2525-- PLUGIN table & hook method signatures
2626---- --------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments