Clears all stored authentication tokens
Delegates to the token-operations module's clearTokens function, preserving the same function signature for backward compatibility.
// Clear tokens during logoutimport { clearTokens } from "./auth/storage/token-store";clearTokens();showLoginScreen(); Copy
// Clear tokens during logoutimport { clearTokens } from "./auth/storage/token-store";clearTokens();showLoginScreen();
Use clearTokens from token-operations directly
export function clearTokens(): void { clearTokensOp();} Copy
export function clearTokens(): void { clearTokensOp();}
Clears all stored authentication tokens
Delegates to the token-operations module's clearTokens function, preserving the same function signature for backward compatibility.