diffusion
Version:
Diffusion JavaScript client
29 lines (24 loc) • 608 B
JavaScript
var _interface = require('util/interface')._interface;
/**
* An ErrorReport from the server.
*
* @class ErrorReport
* @property {String} message - The error message.
* @property {Number} line - The line at which the problem was found.
* @property {Number} column - The column at which the problem was found.
*/
var ErrorReport = _interface('ErrorReport', [
/*
* The error message
*/
'message',
/*
* The line at which the problem was found
*/
'line',
/*
* The column at which the problem was found
*/
'column'
]);
module.exports = ErrorReport;