| title |
LoadEventData |
| category |
Interfaces |
| titleTemplate |
API - NativeScript |
| breadcrumbs |
| name |
href |
API Index |
/api/ |
|
| name |
href |
Interfaces |
/api/#summary-Interfaces |
|
|
|
| layout |
api |
| seo |
| description |
Event data containing information for the loading events of a WebView. |
|
<script setup lang="ts">
import { provide } from "vue";
import API_DATA from "./LoadEventData.data.json";
provide('API_DATA', API_DATA);
</script>
interface LoadEventData extends EventData {
error: string;
navigationType: NavigationType;
url: string;
}