libp2p
    Preparing search index...

    Variable contentRoutingSymbolConst

    contentRoutingSymbol: typeof contentRoutingSymbol = ...

    Any object that implements this Symbol as a property should return a Partial instance as the property value, similar to how Symbol.Iterable can be used to return an Iterable from an Iterator.

    import { contentRoutingSymbol, ContentRouting } from '@libp2p/content-routing'

    class MyContentRouter implements ContentRouting {
    get [contentRoutingSymbol] () {
    return this
    }

    // ...other methods
    }