Compare commits

...

2 Commits

Author SHA1 Message Date
9aae83307e Update 2025-05-08 14:54:44 +02:00
48fc2ed99c Update 2025-05-07 21:39:58 +02:00
3 changed files with 9 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
---@param index number
---@return string commandName
---@return string somebullshit
---@return string binding1
---@return string binding2
---Returns information about a key binding

View File

@@ -1,8 +1,10 @@
---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param set 2
---@param 1
---@param 2
---@alias set
---| 1 #Account-wide key bindings
---| 2 #Character-specific key bindings
---@param set set
---Saves the current set of key bindings
function SaveBindings(set, 1, 2) end
function SaveBindings(set) end

View File

@@ -2,7 +2,7 @@
---@meta
---@param key string
---@param command string
---@return 1nil success
---@param command string?
---@return boolean success
---Binds a key combination to a binding command
function SetBinding(key, command) end