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 | */
|
9 | export 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 | */
|
16 | export declare function __setInputValues($inputs: any): void;
|
17 | export declare function __createInputTransfer(): () => void;
|