ReadKeep/readeck/Domain/Protocols/PAuthRepository.swift
Ilyas Hallak 789d581705 Integrate Settings with WebView font customization
- Connect SettingsView font selection to WebView CSS rendering
- Add dynamic font size and family mapping in WebView
- Implement CSS custom properties for responsive font scaling
- Add font family fallback stacks for cross-platform compatibility
- Update WebView to use Settings object for typography configuration
2025-06-15 00:56:19 +02:00

14 lines
278 B
Swift

//
// PAuthRepository.swift
// readeck
//
// Created by Ilyas Hallak on 10.06.25.
//
protocol PAuthRepository {
func login(username: String, password: String) async throws -> User
func logout() async throws
func getCurrentSettings() async throws -> Settings?
}