mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 07:24:52 +01:00
19 lines
293 B
Lua
19 lines
293 B
Lua
|
---@type Workspace
|
||
|
local workspace
|
||
|
|
||
|
---@type Client
|
||
|
local client
|
||
|
|
||
|
---@class WorkspaceReference
|
||
|
---@field name string
|
||
|
---@field owned boolean
|
||
|
|
||
|
---@type WorkspaceReference[]
|
||
|
local available_workspaces = {}
|
||
|
|
||
|
return {
|
||
|
workspace = workspace,
|
||
|
client = client,
|
||
|
available = available_workspaces,
|
||
|
}
|