Urara-Blog/node_modules/.pnpm-store/v3/files/6f/9fd25b8533fab0e0e50ea3b8c55eb733d6bdb2be67449f6ee9fcec3def36776866c9f7f9f052df46d1459810a1151a5b47fc472cade035b1e1640febcf53c4
2022-08-14 01:14:53 +08:00

19 lines
300 B
Text

'use strict'
const EventEmitter = require('events')
class Dispatcher extends EventEmitter {
dispatch () {
throw new Error('not implemented')
}
close () {
throw new Error('not implemented')
}
destroy () {
throw new Error('not implemented')
}
}
module.exports = Dispatcher