chore(packages/api): clean up imports

This commit is contained in:
PalmDevs
2024-01-14 21:50:23 +07:00
parent 59fc50fd41
commit 4d0bc4f196
3 changed files with 6 additions and 6 deletions

View File

@@ -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.

View File

@@ -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'

View File

@@ -1 +1 @@
export * from './classes/index.js'
export * from './classes/index'