refactor(mobile): refactor user provider ()

This commit is contained in:
Alex 2025-02-26 17:04:43 -06:00 committed by GitHub
commit 8fbd650483
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 65 additions and 23 deletions
mobile/lib/interfaces

View file

@ -22,6 +22,10 @@ abstract interface class IUserRepository implements IDatabaseRepository {
Future<User> me();
Future<void> clearTable();
Future<List<int>> getTimelineUserIds(int id);
Stream<List<int>> watchTimelineUsers(int id);
}
enum UserSort { id }