commonMain.com.multiplatform.webview.request.WebRequestInterceptResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-webview-multiplatform Show documentation
Show all versions of compose-webview-multiplatform Show documentation
WebView for JetBrains Compose Multiplatform
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
}