mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
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;
|
|
}
|