Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 560 Bytes

File metadata and controls

17 lines (11 loc) · 560 Bytes

Home > @holochain/tryorama > CallableCell

CallableCell type

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