1 |
|
2 | import { StringValueMap } from './StringValueMap';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 | export declare class FilterParams extends StringValueMap {
|
21 | |
22 |
|
23 |
|
24 |
|
25 |
|
26 | constructor(map?: any);
|
27 | /**
|
28 | * Converts specified value into FilterParams.
|
29 | *
|
30 | * @param value value to be converted
|
31 | * @returns a newly created FilterParams.
|
32 | */
|
33 | static fromValue(value: any): FilterParams;
|
34 | /**
|
35 | * Creates a new FilterParams from a list of key-value pairs called tuples.
|
36 | *
|
37 | * @param tuples a list of values where odd elements are keys and the following even elements are values
|
38 | * @returns a newly created FilterParams.
|
39 | */
|
40 | static fromTuples(...tuples: any[]): FilterParams;
|
41 | /**
|
42 | * Parses semicolon-separated key-value pairs and returns them as a FilterParams.
|
43 | *
|
44 | * @param line semicolon-separated key-value list to initialize FilterParams.
|
45 | * @returns a newly created FilterParams.
|
46 | *
|
47 | * @see [[StringValueMap.fromString]]
|
48 | */
|
49 | static fromString(line: string): FilterParams;
|
50 | }
|