All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.multiplatform.webview.request.WebRequestInterceptResult.kt Maven / Gradle / Ivy

There is a newer version: 1.9.40-alpha04
Show newest version
package com.multiplatform.webview.request

/**
 * Created By Kevin Zou On 2023/11/30
 */
sealed interface WebRequestInterceptResult {
    data object Allow : WebRequestInterceptResult

    data object Reject : WebRequestInterceptResult

    class Modify(val request: WebRequest) : WebRequestInterceptResult
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy