UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

12 lines (11 loc) 290 B
import { EventData } from '../../data/observable'; export interface CreateViewEventData extends EventData { /** * The native view that should be added to the visual tree. */ view: any; /** * An optional context for creating the view. */ context?: any; }