mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-04-07 19:17:48 +00:00
16 lines
298 B
Swift
16 lines
298 B
Swift
import Foundation
|
|
|
|
public enum Output: 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
|
|
}
|
|
}
|