1
0
Fork 0
mirror of https://github.com/openseadragon/openseadragon.git synced 2025-04-01 21:06:12 +03:00
openseadragon/bin/jsdoc/test/name.js

19 lines
No EOL
266 B
JavaScript

/**
@name Response
@class
*/
Response.prototype = {
/**
@name Response#text
@function
@description
Gets the body of the response as plain text
@returns {String}
Response as text
*/
text: function() {
return this.nativeResponse.responseText;
}
}