ionic-framework
Version:
The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.
29 lines (28 loc) • 621 B
TypeScript
/**
* The Input component is used to focus text input elements.
*
* @usage
* ```html
* <ion-input>
* <ion-label>Name</ion-label>
* <input value="Name" type="text">
* </ion-input>
* ```
*/
export declare class Form {
private _blur;
private _focused;
private _ids;
private _inputs;
constructor();
register(input: any): void;
deregister(input: any): void;
focusCtrl(document: any): void;
focusOut(): void;
setAsFocused(input: any): void;
/**
* Focuses the next input element, if it exists.
*/
focusNext(currentInput: any): any;
nextId(): number;
}