diff options
Diffstat (limited to 'src/streaming.ts')
| -rw-r--r-- | src/streaming.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/streaming.ts b/src/streaming.ts index 8507f28a86..c19c7aa804 100644 --- a/src/streaming.ts +++ b/src/streaming.ts @@ -2,7 +2,7 @@ import autobind from 'autobind-decorator'; import { EventEmitter } from 'eventemitter3'; import ReconnectingWebsocket from 'reconnecting-websocket'; import { stringify } from 'querystring'; -import { BroadcasrEvents, Channels } from './streaming.types'; +import { BroadcastEvents, Channels } from './streaming.types'; function urlQuery(obj: {}): string { return stringify(Object.entries(obj) @@ -15,7 +15,7 @@ type AnyOf<T extends Record<any, any>> = T[keyof T]; type StreamEvents = { _connected_: void; _disconnected_: void; -} & BroadcasrEvents; +} & BroadcastEvents; /** * Misskey stream connection |