mirror of
https://github.com/immich-app/immich.git
synced 2025-02-18 01:24:26 -05:00
6 lines
207 B
Dart
6 lines
207 B
Dart
import 'package:immich_mobile/domain/models/render_list.model.dart';
|
|
|
|
abstract interface class IRenderListRepository {
|
|
/// Streams the [RenderList] for the main timeline
|
|
Stream<RenderList> watchAll();
|
|
}
|