···11---@meta
2233---- The primary zircon module
33+--- The primary comlink module
44--
55----@class zircon
66-local zircon = {}
55+---@class comlink
66+local comlink = {}
7788---@class ConnectionConfiguration
99--
···1616---Set connection configuration
1717--
1818---@param cfg ConnectionConfiguration
1919-function zircon.connect(cfg) end
1919+function comlink.connect(cfg) end
20202121----Log a msg to the zircon logs
2121+---Log a msg to the comlink logs
2222--
2323---@param msg string The message to log
2424-function zircon.log(msg) end
2424+function comlink.log(msg) end
25252626---- A command for zircon to execute
2626+--- A command for comlink to execute
2727--
2828---@enum action
2929local Action = {
···4040--
4141---@param key string The key to bind, eg "alt+n", "shift+left"
4242---@param action action The action to perform, eg "quit"
4343-function zircon.bind(key, action) end
4343+function comlink.bind(key, action) end
44444545-return zircon
4545+return comlink