Sha256: aca641d75069002f19593d70c2c51d31b7b6d53b9e6ddeeb661e7fab26b15d32
Contents?: true
Size: 457 Bytes
Versions: 6
Compression:
Stored size: 457 Bytes
Contents
const ConnectionType = require('../../utils/ConnectionType'); class IConnectionData { get connectionType() { throw new Error('You have to implement the method connectionType!'); } get hostname() { throw new Error('You have to implement the method hostname!'); } serializeConnectionData() { throw new Error('You have to implement the method serializeConnectionData!'); } } module.exports = IConnectionData;
Version data entries
6 entries across 6 versions & 1 rubygems