split lua stubs into one set for ldoc, and one set for lua-ls

This commit is contained in:
jacqueline
2024-01-05 17:15:47 +11:00
parent aa1dd3d522
commit e12a68a74d
24 changed files with 206 additions and 79 deletions
+11
View File
@@ -0,0 +1,11 @@
--- @meta
--- @class backstack
local backstack = {}
--- @param constructor function
function backstack.push(constructor) end
function backstack.pop() end
return backstack