(script: Script)
| 171 | } |
| 172 | |
| 173 | getScriptValue(script: Script): Promise<{ [key: string]: any }> { |
| 174 | return this.doThrow("getScriptValue", script); |
| 175 | } |
| 176 | |
| 177 | setScriptValue({ uuid, key, value, ts }: { uuid: string; key: string; value: any; ts?: number }) { |
| 178 | const keyValuePairs = [[key, encodeRValue(value)]] as TKeyValuePair[]; |
no test coverage detected