UNPKG

326 BJavaScriptView Raw
1
2const OrigConnection = require('../../../lib/class/Connection')
3
4/**
5 * Class representing a connection to the daemon.
6 * @class
7 */
8class Connection extends OrigConnection {
9 shareSIGINT() {
10 process.on('SIGINT', () => {
11 this.sendMessage({
12 type: 'SIGINT'
13 })
14 })
15 }
16}
17
18module.exports = Connection