• Clears all stored authentication tokens

    Delegates to the token-operations module's clearTokens function, preserving the same function signature for backward compatibility.

    Returns void

    // Clear tokens during logout
    import { clearTokens } from "./auth/storage/token-store";

    clearTokens();
    showLoginScreen();

    Use clearTokens from token-operations directly

    export function clearTokens(): void {
    clearTokensOp();
    }