19 lines
437 B
Swift
19 lines
437 B
Swift
//
|
|
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol AttachmentThumbnailService {
|
|
|
|
func thumbnailImage(
|
|
for attachmentStream: AttachmentStream,
|
|
quality: AttachmentThumbnailQuality
|
|
) async -> UIImage?
|
|
|
|
func thumbnailImageSync(
|
|
for attachmentStream: AttachmentStream,
|
|
quality: AttachmentThumbnailQuality
|
|
) -> UIImage?
|
|
}
|