Add AppInfo#getSupportedImageMimeTypes

This commit is contained in:
arkon 2023-07-10 10:38:09 -04:00
parent 30a6effc50
commit 989f08eb62

View File

@ -16,4 +16,12 @@ object AppInfo {
* @since extension-lib 1.3 * @since extension-lib 1.3
*/ */
fun getVersionName(): String = throw Exception("Stub!") fun getVersionName(): String = throw Exception("Stub!")
/**
* A list of supported image MIME types by the reader.
* e.g. ["image/jpeg", "image/png", ...]
*
* @since extension-lib 1.5
*/
fun getSupportedImageMimeTypes(): List<String> = throw Exception("Stub!")
} }