/** * Error-propagation contract for the file store (Codex review fixes): * - A critical-store write that fails for a REAL reason (not the folder being * gone) MUST reject — swallowing it silently loses Signal session state. * - The folder genuinely being gone (ENOENT, shutdown race) is tolerated. * - listKeys must not turn a real readdir failure into an empty namespace. * * We force deterministic, portable failures by replacing the store folder with * a regular FILE: then any path under it fails with ENOTDIR (≠ ENOENT), and * removing it entirely yields ENOENT. */ export {}; //# sourceMappingURL=use-bridge-store-errors.test.d.ts.map