diff --git a/packages/api/src/classes/Client.ts b/packages/api/src/classes/Client.ts index 245fb91..22193ee 100755 --- a/packages/api/src/classes/Client.ts +++ b/packages/api/src/classes/Client.ts @@ -1,5 +1,5 @@ import { ClientOperation, Packet, ServerOperation } from '@revanced/bot-shared' -import ClientGateway, { ClientGatewayEventHandlers } from './ClientGateway.js' +import ClientGateway, { ClientGatewayEventHandlers } from './ClientGateway' /** * The client that connects to the API. diff --git a/packages/api/src/classes/index.ts b/packages/api/src/classes/index.ts index 585b439..f2d3e72 100755 --- a/packages/api/src/classes/index.ts +++ b/packages/api/src/classes/index.ts @@ -1,4 +1,4 @@ -export { default as Client } from './Client.js' -export * from './Client.js' -export { default as ClientGateway } from './ClientGateway.js' -export * from './ClientGateway.js' +export { default as Client } from './Client' +export * from './Client' +export { default as ClientGateway } from './ClientGateway' +export * from './ClientGateway' diff --git a/packages/api/src/index.ts b/packages/api/src/index.ts index b090345..63e4228 100755 --- a/packages/api/src/index.ts +++ b/packages/api/src/index.ts @@ -1 +1 @@ -export * from './classes/index.js' +export * from './classes/index'