| title |
ItemEventData |
| 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 index and the view associated to a list view item. |
|
<script setup lang="ts">
import { provide } from "vue";
import API_DATA from "./ItemEventData.data.json";
provide('API_DATA', API_DATA);
</script>
interface ItemEventData extends EventData {
android: any;
index: number;
ios: any;
view: View;
}