prosody/teal-src/util/interpolation.d.tl
Kim Alvefur d7b1df42d3 util: Add Teal interface definition files
Enables writing code in Teal that is aware of the interfaces and
function prototypes in these other utils.

Could also be used to do type checks on Lua sources, but this tends to
have a lot of noise.
2021-03-09 14:36:46 +01:00

6 lines
224 B
Text

local type renderer = function (string, { string : any }) : string
local type filter = function (string, any) : string
local record lib
new : function (string, string, funcs : { string : filter }) : renderer
end
return lib