0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-02-18 01:24:26 -05:00
immich/mobile-v2/lib/domain/interfaces/renderlist.interface.dart
2024-10-17 10:51:23 +05:30

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();
}