Added zlib, fixed wildcard import ignoring namespaces

This commit is contained in:
2017-10-26 16:17:17 +08:00
parent 6e05b2d5c1
commit 7ab3fa333e
16 changed files with 149 additions and 28 deletions

View File

@@ -0,0 +1,8 @@
/** @type {constructor} */
System.Compression.Zlib = function(){};
/** @type {constructor} */
System.Compression.Zlib.Deflate = function(){};
/** @type {Function} */
System.Compression.Zlib.Deflate.compress;

View File

@@ -0,0 +1,2 @@
/** @constructor */
System.Compression = function(){};

View File

@@ -0,0 +1,4 @@
/** @type {Function} */
System.Encoding.Base64 = function(){};
/** @type {Function} */
System.Encoding.Base64.Encode = function(){};

View File

@@ -0,0 +1,4 @@
/** @type {Function} */
System.Encoding.Utf8 = function(){};
/** @type {Function} */
System.Encoding.Utf8.Encode = function(){};

View File

@@ -0,0 +1,2 @@
/** @constructor */
System.Encoding = function(){};