@return {Promise }
({ id, config, custom })
| 107 | ParseScript: parseScript, |
| 108 | /** @return {Promise<void>} */ |
| 109 | UpdateScriptInfo({ id, config, custom }) { |
| 110 | return updateScriptInfo(id, { |
| 111 | config, |
| 112 | custom, |
| 113 | props: { lastModified: Date.now() }, |
| 114 | }); |
| 115 | }, |
| 116 | /** @return {Promise<number>} */ |
| 117 | Vacuum: vacuum, |
| 118 | }); |
nothing calls this directly
no test coverage detected