blob: 0feff2352c5e2df864ad0635448e023193028c4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---@meta mp.options
---@class mp.options
local options = {}
---@param t table<string,string|number|boolean>
---@param identifier? string
---@param on_update? fun(list: table<string,true|nil>)
function options.read_options(t, identifier, on_update) end
return options
|