(key: string, draftGeneration: number)
| 75 | } |
| 76 | |
| 77 | function writeTombstoneGeneration(key: string, draftGeneration: number): void { |
| 78 | const filePath = tombstonePath(key); |
| 79 | writeFileSync(filePath, JSON.stringify({ draftGeneration }), "utf-8"); |
| 80 | } |
| 81 | |
| 82 | function clearTombstone(key: string): void { |
| 83 | const filePath = tombstonePath(key); |
no test coverage detected