Comparison

teal-src/util/encodings.d.tl @ 11432:113f3912c7cb

util: Add Teal interface definition files 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.
author Kim Alvefur <zash@zash.se>
date Tue, 09 Mar 2021 14:36:46 +0100
child 11459:86904555bffc
comparison
equal deleted inserted replaced
11431:4874b54af344 11432:113f3912c7cb
1 -- TODO many actually return Maybe(String)
2 local record lib
3 record base64
4 encode : function (s : string) : string
5 decode : function (s : string) : string
6 end
7 record stringprep
8 nameprep : function (s : string, strict : boolean) : string
9 nodeprep : function (s : string, strict : boolean) : string
10 resourceprep : function (s : string, strict : boolean) : string
11 saslprep : function (s : string, strict : boolean) : string
12 end
13 record idna
14 to_ascii : function (s : string) : string
15 to_unicode : function (s : string) : string
16 end
17 record utf8
18 valid : function (s : string) : boolean
19 length : function (s : string) : number
20 end
21 record confusable
22 skeleteon : function (s : string) : string
23 end
24 version : string
25 end
26 return lib
27