Merge remote-tracking branch 'origin/master' into Astro

This commit is contained in:
2017-10-26 16:22:38 +08:00
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(){};