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