refact: cleanup
This commit is contained in:
9
src/auth/auth.provider.ts
Normal file
9
src/auth/auth.provider.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { Statement } from './auth.schemas.ts';
|
||||
|
||||
type AuthProvider = {
|
||||
getAccess: (token: string) => Promise<{
|
||||
statements: Statement[];
|
||||
}>;
|
||||
};
|
||||
|
||||
export type { AuthProvider };
|
||||
Reference in New Issue
Block a user