mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
18 lines
293 B
Lua
18 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,
|
|
}
|