chore: clean git cache

This commit is contained in:
GitHub Actions
2026-01-02 01:01:54 +00:00
parent aae55a8ae9
commit 5ea207ab47
290 changed files with 62353 additions and 0 deletions

9
frontend/src/types/test-shims.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
// Test-only type shims to satisfy strict type-checking in CI
// Properly type the default export from @testing-library/user-event
declare module '@testing-library/user-event' {
import type { UserEvent } from '@testing-library/user-event/dist/types/setup/setup'
const userEvent: UserEvent
export default userEvent
export { userEvent }
export type { UserEvent }
}

View File

@@ -0,0 +1,5 @@
// ambient module declaration to satisfy typescript in editor environment
declare module '@testing-library/user-event' {
const userEvent: unknown;
export default userEvent;
}