({ uuid, key, value, ts }: { uuid: string; key: string; value: any; ts?: number })
| 175 | } |
| 176 | |
| 177 | setScriptValue({ uuid, key, value, ts }: { uuid: string; key: string; value: any; ts?: number }) { |
| 178 | const keyValuePairs = [[key, encodeRValue(value)]] as TKeyValuePair[]; |
| 179 | return this.do("setScriptValues", { uuid, keyValuePairs, ts } as TSetValuesParams); |
| 180 | } |
| 181 | |
| 182 | setScriptValues(params: TSetValuesParams) { |
| 183 | return this.do("setScriptValues", params); |
no test coverage detected