| 5 | import { ensureDir, pathExists, readMd, writeMd } from './fs.js'; |
| 6 | |
| 7 | export interface DocumentVersion { |
| 8 | mtimeMs: number; |
| 9 | size: number; |
| 10 | sha256: string; |
| 11 | } |
| 12 | |
| 13 | export interface DocumentUpdateOptions { |
| 14 | expectedSha256?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected