- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
// biome-ignore lint/performance/noBarrelFile: entrypoint module
|
|
export {
|
|
type IpcTransport,
|
|
type IpcTransportConfig,
|
|
type IpcTransportErrorType,
|
|
ipc,
|
|
} from '../clients/transports/ipc.js'
|
|
export {
|
|
getIpcRpcClient,
|
|
type IpcRpcClient,
|
|
} from '../utils/rpc/ipc.js'
|
|
export { mainnetTrustedSetupPath } from './trustedSetups.js'
|