refact: cleanup

This commit is contained in:
Morten Olsen
2025-10-16 16:43:44 +02:00
parent 7c30e43ef7
commit 9ba5788d20
19 changed files with 61 additions and 65 deletions

View File

@@ -0,0 +1,9 @@
import type { Statement } from './auth.schemas.ts';
type AuthProvider = {
getAccess: (token: string) => Promise<{
statements: Statement[];
}>;
};
export type { AuthProvider };