diffusion
Version:
Diffusion JavaScript client
18 lines (16 loc) • 443 B
JavaScript
var _interface = require('util/interface')._interface;
/**
* Delta that represents the difference between two binary values.
*
* @class diffusion.datatypes.BinaryDelta
* @since 5.7
*/
module.exports = _interface('BinaryDelta', [
/**
* Whether this delta contains any changes.
*
* @returns {Boolean} if the delta contains changes
* @function diffusion.datatypes.BinaryDelta#hasChanges
*/
'hasChanges'
]);