Skip to content

Commit

Permalink
fix: don't export debug (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
mint-dewit authored Jan 8, 2024
1 parent de4d89f commit c4ff649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {WebSocketOpCode} from './types.js';
import type {OutgoingMessageTypes, OutgoingMessage, OBSEventTypes, IncomingMessage, IncomingMessageTypes, OBSRequestTypes, OBSResponseTypes, RequestMessage, RequestBatchExecutionType, RequestBatchRequest, RequestBatchMessage, ResponseMessage, ResponseBatchMessage, RequestBatchOptions} from './types.js';
import authenticationHashing from './utils/authenticationHashing.js';

export const debug = createDebug('obs-websocket-js');
const debug = createDebug('obs-websocket-js');

export class OBSWebSocketError extends Error {
constructor(public code: number, message: string) {
Expand Down

0 comments on commit c4ff649

Please sign in to comment.