mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
17 lines
635 B
Dart
17 lines
635 B
Dart
|
|
import 'package:immich_mobile/entities/album.entity.dart';
|
||
|
|
import 'package:immich_mobile/widgets/asset_grid/asset_grid_data_structure.dart';
|
||
|
|
|
||
|
|
abstract class ITimelineRepository {
|
||
|
|
Stream<RenderList> watchArchiveTimeline(int userId);
|
||
|
|
Stream<RenderList> watchFavoriteTimeline(int userId);
|
||
|
|
Stream<RenderList> watchTrashTimeline(int userId);
|
||
|
|
Stream<RenderList> watchAlbumTimeline(Album album);
|
||
|
|
Stream<RenderList> watchAllVideosTimeline();
|
||
|
|
|
||
|
|
Stream<RenderList> watchHomeTimeline(int userId, GroupAssetsBy groupAssetsBy);
|
||
|
|
Stream<RenderList> watchMultiUsersTimeline(
|
||
|
|
List<int> userIds,
|
||
|
|
GroupAssetsBy groupAssetsBy,
|
||
|
|
);
|
||
|
|
}
|