* Retrieves a single value for a parameter. * @param name The parameter name. * @return The parameter's single value, * or the first value if the parameter has multiple values, * or `null` when there is no such parameter.
(name: string)
| 59 | * or `null` when there is no such parameter. |
| 60 | */ |
| 61 | get(name: string): string | null; |
| 62 | /** |
| 63 | * Retrieves multiple values for a parameter. |
| 64 | * @param name The parameter name. |
no outgoing calls