10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
import type { Statement } from './auth.schemas.ts';
|
|
|
|
type AuthProvider = {
|
|
getAccess: (token: string) => Promise<{
|
|
statements: Statement[];
|
|
}>;
|
|
};
|
|
|
|
export type { AuthProvider };
|