UNPKG

639 BTypeScriptView Raw
1/**
2 * get input values
3 *
4 * Extended by: Gabriel Schuster <github.com@actra.de>
5 * Now gets values of inputs (including "checked" status radios, checkboxes), textareas and selects (including multiselects)
6 * Tries to identify the elements as exact as possible, falls back to numeric index when identification fails
7 * WIP refactor by: PatrickJS
8 */
9export declare function __getInputValues(): any;
10/**
11 * set input values
12 *
13 * Extended by: Gabriel Schuster <github.com@actra.de>
14 * WIP refactor by: PatrickJS
15 */
16export declare function __setInputValues($inputs: any): void;
17export declare function __createInputTransfer(): () => void;