1 | import { CreateViewEventData } from './placeholder-common';
|
2 | import { View } from '../core/view';
|
3 | import { EventData } from '../../data/observable';
|
4 | export * from './placeholder-common';
|
5 | export declare class Placeholder extends View {
|
6 | static creatingViewEvent: string;
|
7 | createNativeView(): globalAndroid.view.View;
|
8 | }
|
9 | export interface Placeholder {
|
10 | on(eventNames: string, callback: (args: EventData) => void, thisArg?: any): void;
|
11 | on(event: 'creatingView', callback: (args: CreateViewEventData) => void, thisArg?: any): void;
|
12 | }
|