Home > @holochain/tryorama > CallableCell
Extends an installed cell by a function to call a zome.
Signature:
export type CallableCell = Pick<ClonedCell | ProvisionedCell, "name" | "cell_id" | "dna_modifiers"> & Partial<ClonedCell> & Partial<ProvisionedCell> & {
callZome: CallZomeFn;
};References: CallZomeFn