util.promise: Add Teal interface specification file

This commit is contained in:
Kim Alvefur 2022-07-24 21:25:41 +02:00
parent 53907b44ce
commit 523d844c78
2 changed files with 23 additions and 3 deletions

View file

@ -1,6 +1,4 @@
local record Promise
-- util.promise
end
local Promise = require "util.promise".Promise;
local record sslctx -- from LuaSec
end

View file

@ -0,0 +1,22 @@
local record lib
type resolve_func = function (any)
type promise_body = function (resolve_func, resolve_func)
record Promise<A, B>
type on_resolved = function (A) : any
type on_rejected = function (B) : any
next : function (Promise, on_resolved, on_rejected) : Promise<any, any>
end
new : function (promise_body) : Promise
resolve : function (any) : Promise
reject : function (any) : Promise
all : function ({ Promise }) : Promise
all_settled : function ({ Promise }) : Promise
race : function ({ Promise }) : Promise
try : function
is_promise : function(any) : boolean
end
return lib