Skip to content

Commit c4ff649

Browse files
authored
fix: don't export debug (#347)
1 parent de4d89f commit c4ff649

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {WebSocketOpCode} from './types.js';
88
import type {OutgoingMessageTypes, OutgoingMessage, OBSEventTypes, IncomingMessage, IncomingMessageTypes, OBSRequestTypes, OBSResponseTypes, RequestMessage, RequestBatchExecutionType, RequestBatchRequest, RequestBatchMessage, ResponseMessage, ResponseBatchMessage, RequestBatchOptions} from './types.js';
99
import authenticationHashing from './utils/authenticationHashing.js';
1010

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

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

0 commit comments

Comments
 (0)