( value: BannerDisplayState, filePath: string = getBannerStateFile(), )
| 62 | } |
| 63 | |
| 64 | export async function writeBannerDisplayState( |
| 65 | value: BannerDisplayState, |
| 66 | filePath: string = getBannerStateFile(), |
| 67 | ): Promise<void> { |
| 68 | await writeJsonFile(filePath, BannerDisplayStateSchema, value); |
| 69 | } |
no test coverage detected