Skip to content

Commit

Permalink
fix(api): Fix type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Apr 11, 2024
1 parent f3f8df4 commit dec3e81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lua/smart-splits/api.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local lazy = require('smart-splits.lazy')
local config = lazy.require_on_index('smart-splits.config') --[[@as SmartSplitsConfig]]
local mux = lazy.require_on_exported_call('smart-splits.mux') --[[@as SmartSplitsMultiplexer]]
local mux = lazy.require_on_exported_call('smart-splits.mux') --[[@as SmartSplitsMuxApi]]
local utils = require('smart-splits.utils')
local mux_utils = require('smart-splits.mux.utils')
local types = require('smart-splits.types')
Expand Down
1 change: 1 addition & 0 deletions lua/smart-splits/mux/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ local function move_multiplexer_inner(direction, multiplexer)
return false
end

---@class SmartSplitsMuxApi
local M = {}

---Get the currently configured multiplexer
Expand Down

0 comments on commit dec3e81

Please sign in to comment.