CCC Docs
    Preparing search index...

    Interface representing a repository for managing connections.

    interface ConnectionsRepo {
        get(selector: AccountSelector): Promise<undefined | Connection>;
        set(
            selector: AccountSelector,
            connection: undefined | Connection,
        ): Promise<void>;
    }

    Implemented by

    Index

    Methods

    Methods