Type Alias DucBlockCollection

DucBlockCollection: {
    children: { id: string; isCollection: boolean }[];
    id: string;
    label: string;
    metadata?: DucBlockMetadata;
    thumbnail?: Uint8Array;
}

Type declaration

  • children: { id: string; isCollection: boolean }[]

    True if pointing to another collection, False if pointing to a block.

  • id: string
  • label: string
  • Optionalmetadata?: DucBlockMetadata
  • Optionalthumbnail?: Uint8Array