| 962 | * @typeParam T Type of the value. |
| 963 | */ |
| 964 | export interface NameValuePair<T> { |
| 965 | /** The name of this pair. */ |
| 966 | name: string; |
| 967 | /** The value of this pair. */ |
| 968 | value: T; |
| 969 | } |
| 970 | |
| 971 | export interface Options { |
| 972 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected