source: node_modules/undici/lib/dispatcher.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 300 bytes
Line 
1'use strict'
2
3const EventEmitter = require('events')
4
5class Dispatcher extends EventEmitter {
6 dispatch () {
7 throw new Error('not implemented')
8 }
9
10 close () {
11 throw new Error('not implemented')
12 }
13
14 destroy () {
15 throw new Error('not implemented')
16 }
17}
18
19module.exports = Dispatcher
Note: See TracBrowser for help on using the repository browser.