fix(types): do not mark unstable API as private

These functions are allowed to be used downstream, they are just not API
stable.
This commit is contained in:
Lewis Russell
2025-03-07 21:04:50 +00:00
committed by Lewis Russell
parent b8ddd3b6bb
commit b813075b8a
2 changed files with 0 additions and 22 deletions

View File

@@ -371,10 +371,6 @@ end
local function render_api_meta(_f, fun, write)
write('')
if vim.startswith(fun.name, 'nvim__') then
write('--- @private')
end
if fun.deprecated then
write('--- @deprecated')
end