File

teal-src/util/array.d.tl @ 12711:9e9f158d6699

util.paseto: Export similar API to new util.jwt for ease and consistency
author Matthew Wild <mwild1@gmail.com>
date Mon, 11 Jul 2022 14:09:16 +0100
parent 12611:33b7e7bd83fd
line wrap: on
line source

local record array_t<T>
	{ T }
end

local record lib
	metamethod __call : function () : array_t
end

return lib