1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-06 12:02:40 +03:00

Appease closure linter.

This commit is contained in:
Kegan Dougal
2015-06-05 17:45:56 +01:00
parent be6ab91ab5
commit bf1a9f83e6
2 changed files with 11 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
"use strict"; "use strict";
/** /**
* This is a mock framework for an HTTP backend, heavily inspired by Angular.js * Construct a mock HTTP backend, heavily inspired by Angular.js.
* @constructor
*/ */
function HttpBackend() { function HttpBackend() {
this.requests = []; this.requests = [];
this.expectedRequests = []; this.expectedRequests = [];
@@ -139,4 +139,7 @@ Request.prototype = {
} }
}; };
/**
* The HttpBackend class.
*/
module.exports = HttpBackend; module.exports = HttpBackend;