aboutsummaryrefslogtreecommitdiff
path: root/types/zlib.d.tl
blob: cd08a7219836d9be0a90cc1afc3897cf7d2555cb (plain)
1
2
3
4
5
6
7
8
9
10
local record zlib
    _VERSION: string
    deflate: function(integer, integer): function(string, string): string
    inflate: function(integer): function(string): string
    crc32: function(): function(string): integer
    compress: function(string, integer, integer, integer): string
    decompress: function(string, integer): string
    crc32: function((function(string): integer), string): integer
end
return zlib