CCC Docs
    Preparing search index...

    Type Alias CellLike

    CellLike: CellAnyLike & (
        | { outPoint: OutPointLike; previousOutput?: null }
        | { outPoint?: null; previousOutput: OutPointLike }
    )

    Represents a cell-like object that is guaranteed to be on-chain. It must have an outPoint (or its alias previousOutput). This is used as a type constraint for creating Cell instances.

    Cell