mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
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.
6 lines
224 B
Text
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
|