refactor: remove unused exported type interfaces
All checks were successful
Deploy to Homelab / deploy (push) Successful in 19s

CreateFileParams, UserRow, CreateUserParams, and MultipartFile were
exported but never imported outside their own modules. Narrowed visibility
to module-local to keep the public surface minimal.

Confirmed with knip (zero findings) and all 61 tests passing.
This commit is contained in:
2026-03-17 10:44:23 -07:00
parent e25c715fb7
commit 418a553429
3 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ export async function loginAs(app: FastifyInstance, username: string, password:
return cookie.split(';')[0].replace('token=', '');
}
export interface MultipartFile {
interface MultipartFile {
filename: string;
contentType: string;
data: Buffer;