@nativescript-community/ui-carto
Version:
NativeScript plugin for CARTO Mobile SDK
12 lines (11 loc) • 361 B
TypeScript
import { Observable } from '@nativescript/core';
export declare abstract class BaseNative<T, U extends {}> extends Observable {
options: U;
constructor(options?: U, native?: T);
native: T;
protected duringInit: boolean;
initNativeView(native: T, options: U): void;
getNative(): T;
createNative(options: U): T;
dispose(): void;
}