|
14 | 14 | * ```
|
15 | 15 | */
|
16 | 16 |
|
17 |
| -import type { Connection, NewStreamOptions, Stream } from './connection/index.js' |
18 |
| -import type { ContentRouting } from './content-routing/index.js' |
| 17 | +import type { Connection, NewStreamOptions, Stream } from './connection.js' |
| 18 | +import type { ContentRouting } from './content-routing.js' |
19 | 19 | import type { TypedEventTarget } from './event-target.js'
|
20 |
| -import type { Ed25519PublicKey, PublicKey, RSAPublicKey, Secp256k1PublicKey } from './keys/index.js' |
21 |
| -import type { Metrics } from './metrics/index.js' |
22 |
| -import type { Ed25519PeerId, PeerId, RSAPeerId, Secp256k1PeerId, URLPeerId } from './peer-id/index.js' |
23 |
| -import type { PeerInfo } from './peer-info/index.js' |
24 |
| -import type { PeerRouting } from './peer-routing/index.js' |
25 |
| -import type { Address, Peer, PeerStore } from './peer-store/index.js' |
| 20 | +import type { Ed25519PublicKey, PublicKey, RSAPublicKey, Secp256k1PublicKey } from './keys.js' |
| 21 | +import type { Metrics } from './metrics.js' |
| 22 | +import type { Ed25519PeerId, PeerId, RSAPeerId, Secp256k1PeerId, URLPeerId } from './peer-id.js' |
| 23 | +import type { PeerInfo } from './peer-info.js' |
| 24 | +import type { PeerRouting } from './peer-routing.js' |
| 25 | +import type { Address, Peer, PeerStore } from './peer-store.js' |
26 | 26 | import type { Startable } from './startable.js'
|
27 |
| -import type { StreamHandler, StreamHandlerOptions } from './stream-handler/index.js' |
28 |
| -import type { Topology } from './topology/index.js' |
29 |
| -import type { Listener, OutboundConnectionUpgradeEvents } from './transport/index.js' |
| 27 | +import type { StreamHandler, StreamHandlerOptions } from './stream-handler.js' |
| 28 | +import type { Topology } from './topology.js' |
| 29 | +import type { Listener, OutboundConnectionUpgradeEvents } from './transport.js' |
30 | 30 | import type { Multiaddr } from '@multiformats/multiaddr'
|
31 | 31 | import type { ProgressOptions, ProgressEvent } from 'progress-events'
|
32 | 32 |
|
@@ -808,24 +808,23 @@ export const serviceCapabilities = Symbol.for('@libp2p/service-capabilities')
|
808 | 808 | */
|
809 | 809 | export const serviceDependencies = Symbol.for('@libp2p/service-dependencies')
|
810 | 810 |
|
811 |
| -export * from './connection/index.js' |
812 |
| -export * from './connection-encrypter/index.js' |
813 |
| -export * from './connection-gater/index.js' |
814 |
| -export * from './content-routing/index.js' |
815 |
| -export * from './keys/index.js' |
816 |
| -export * from './metrics/index.js' |
817 |
| -export * from './peer-discovery/index.js' |
818 |
| -export * from './peer-id/index.js' |
819 |
| -export * from './peer-info/index.js' |
820 |
| -export * from './peer-routing/index.js' |
821 |
| -export * from './peer-store/index.js' |
822 |
| -export * from './peer-store/tags.js' |
823 |
| -export * from './pubsub/index.js' |
824 |
| -export * from './record/index.js' |
825 |
| -export * from './stream-handler/index.js' |
826 |
| -export * from './stream-muxer/index.js' |
827 |
| -export * from './topology/index.js' |
828 |
| -export * from './transport/index.js' |
| 811 | +export * from './connection.js' |
| 812 | +export * from './connection-encrypter.js' |
| 813 | +export * from './connection-gater.js' |
| 814 | +export * from './content-routing.js' |
| 815 | +export * from './keys.js' |
| 816 | +export * from './metrics.js' |
| 817 | +export * from './peer-discovery.js' |
| 818 | +export * from './peer-id.js' |
| 819 | +export * from './peer-info.js' |
| 820 | +export * from './peer-routing.js' |
| 821 | +export * from './peer-store.js' |
| 822 | +export * from './pubsub.js' |
| 823 | +export * from './record.js' |
| 824 | +export * from './stream-handler.js' |
| 825 | +export * from './stream-muxer.js' |
| 826 | +export * from './topology.js' |
| 827 | +export * from './transport.js' |
829 | 828 | export * from './errors.js'
|
830 | 829 | export * from './event-target.js'
|
831 | 830 | export * from './events.js'
|
|
0 commit comments