@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
7 lines (6 loc) • 356 B
TypeScript
import { ControlStateChangeListenerCallback, ControlStateChangeListener as ControlStateChangeListenerDefinition } from '.';
export declare class ControlStateChangeListener implements ControlStateChangeListenerDefinition {
constructor(control: any, states: string[], callback: ControlStateChangeListenerCallback);
start(): void;
stop(): void;
}