feat(core-audit): package barrel exports

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-11 16:16:44 +02:00
parent cb285cbd1c
commit cbde74b7ee
5 changed files with 23 additions and 11 deletions

View File

@@ -16,7 +16,8 @@ const sample: AuditEntry = {
};
describe("StdoutJsonAuditLog", () => {
let writeSpy: ReturnType<typeof vi.spyOn>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let writeSpy: ReturnType<typeof vi.spyOn<any, any>>;
beforeEach(() => {
writeSpy = vi.spyOn(process.stdout, "write").mockImplementation(() => true);
});