Type alias BlockCursorView<T>

BlockCursorView<T>: {
    remaining?: undefined;
    value: T;
} | {
    remaining: string;
    value: CID;
}

Type Parameters

  • T = unknown

Type declaration

  • Optional remaining?: undefined
  • value: T

Type declaration

  • remaining: string
  • value: CID