add new fles

This commit is contained in:
wing328
2016-04-16 18:19:23 +08:00
parent e62ba9b35d
commit 8e85476cbb
15 changed files with 689 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
goog.provide('API.Client.ApiResponse');
/**
* @record
*/
API.Client.ApiResponse = function() {}
/**
* @type {!number}
* @export
*/
API.Client.ApiResponse.prototype.code;
/**
* @type {!string}
* @export
*/
API.Client.ApiResponse.prototype.type;
/**
* @type {!string}
* @export
*/
API.Client.ApiResponse.prototype.message;