3 namespace BookStack\Entities\Models;
5 use Illuminate\Database\Eloquent\Relations\BelongsTo;
7 interface HasCoverImage
10 * Get the cover image for this item.
12 public function cover(): BelongsTo;
15 * Get the type of the image model that is used when storing a cover image.
17 public function coverImageTypeKey(): string;