mirror of
https://github.com/appwrite/sdk-for-apple.git
synced 2026-04-07 19:17:50 +00:00
16 lines
303 B
Swift
16 lines
303 B
Swift
import Foundation
|
|
|
|
public enum ImageFormat: String, CustomStringConvertible {
|
|
case jpg = "jpg"
|
|
case jpeg = "jpeg"
|
|
case png = "png"
|
|
case webp = "webp"
|
|
case heic = "heic"
|
|
case avif = "avif"
|
|
case gif = "gif"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|