UNPKG

diffusion

Version:

Diffusion JavaScript client

24 lines (22 loc) 711 B
var _interface = require('util/interface')._interface; var DataType = require('../datatype'); /** * Int64 data type. * <P> * Accessed via: * <code>diffusion.datatypes.int64();</code> * <P> * Provides a data type implementation which supports {@link diffusion.datatypes.Int64 64-bit signed integer} values. * The Int64 value is serialized in CBOR-format binary. * <P> * This data type supports null Int64 values. * * @class diffusion.datatypes.Int64DataType * @augments diffusion.datatypes.DataType * * @property {diffusion.datatypes.Int64} diffusion.datatypes.Int64DataType.Int64 - The Int64 data type value class * * @since 6.0 */ module.exports = _interface('Int64DataType', DataType, [ ]);