Annotate

teal-src/util/promise.d.tl @ 12694:26a004c96ef8

util.paseto: Implementation of PASETO v4.public tokens PASETO provides an alternative to JWT with the promise of fewer implementation pitfalls. The v4.public algorithm allows asymmetric cryptographically-verified token issuance and validation. In summary, such tokens can be issued by one party and securely verified by any other party independently using the public key of the issuer. This has a number of potential applications in a decentralized network and ecosystem such as XMPP. For example, such tokens could be combined with XEP-0317 to allow hats to be verified even in the context of a third-party MUC service.
author Matthew Wild <mwild1@gmail.com>
date Fri, 24 Jun 2022 17:03:28 +0100
parent 12612:588b1d175838
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12612
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
2 local record lib
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3 type resolve_func = function (any)
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4 type promise_body = function (resolve_func, resolve_func)
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
5
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
6 record Promise<A, B>
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
7 type on_resolved = function (A) : any
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
8 type on_rejected = function (B) : any
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
9 next : function (Promise, on_resolved, on_rejected) : Promise<any, any>
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
10 end
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
11
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
12 new : function (promise_body) : Promise
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
13 resolve : function (any) : Promise
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
14 reject : function (any) : Promise
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
15 all : function ({ Promise }) : Promise
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
16 all_settled : function ({ Promise }) : Promise
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
17 race : function ({ Promise }) : Promise
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
18 try : function
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
19 is_promise : function(any) : boolean
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
20 end
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
21
588b1d175838 util.promise: Add Teal interface specification file
Kim Alvefur <zash@zash.se>
parents:
diff changeset
22 return lib