Files
stripstream/src/types/auth.ts
Julien Froidefond a4b521fe2e fix: lint type import
2025-03-02 14:02:23 +01:00

13 lines
232 B
TypeScript

import type { KomgaUser } from "./komga";
export interface AuthConfig {
serverUrl: string;
authHeader: string;
}
export interface AuthState {
isAuthenticated: boolean;
user: KomgaUser | null;
serverUrl: string | null;
}