mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
14 lines
310 B
Lua
14 lines
310 B
Lua
--- @meta
|
|
|
|
--- Encode {str} using Base64.
|
|
---
|
|
--- @param str string String to encode
|
|
--- @return string Encoded string
|
|
function vim.base64.encode(str) end
|
|
|
|
--- Decode a Base64 encoded string.
|
|
---
|
|
--- @param str string Base64 encoded string
|
|
--- @return string Decoded string
|
|
function vim.base64.decode(str) end
|