Files
NativeScript/packages/core/ui/placeholder/placeholder-common.ts

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;
}