mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.promise: Add Teal interface specification file
This commit is contained in:
parent
53907b44ce
commit
523d844c78
2 changed files with 23 additions and 3 deletions
|
@ -1,6 +1,4 @@
|
|||
local record Promise
|
||||
-- util.promise
|
||||
end
|
||||
local Promise = require "util.promise".Promise;
|
||||
|
||||
local record sslctx -- from LuaSec
|
||||
end
|
||||
|
|
22
teal-src/util/promise.d.tl
Normal file
22
teal-src/util/promise.d.tl
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue