( value: UpdateCache, filePath: string = getUpdateStateFile(), )
| 31 | } |
| 32 | |
| 33 | export async function writeUpdateCache( |
| 34 | value: UpdateCache, |
| 35 | filePath: string = getUpdateStateFile(), |
| 36 | ): Promise<void> { |
| 37 | await writeJsonFile(filePath, UpdateCacheSchema, value); |
| 38 | } |
no test coverage detected