UNPKG

@holochain/client

Version:

A JavaScript client for the Holochain Conductor API

12 lines (11 loc) 315 B
import { CellId } from "../types.js"; /** * Check if two cell ids are identical. * * @param cellId1 - Cell id 1 to compare. * @param cellId2 - Cell id 1 to compare. * @returns True if the cell ids are identical. * * @public */ export declare const isSameCell: (cellId1: CellId, cellId2: CellId) => boolean;