immich/mobile/lib/interfaces/share_handler.interface.dart

8 lines
220 B
Dart

import 'package:immich_mobile/models/upload/share_intent_attachment.model.dart';
abstract interface class IShareHandlerRepository {
void Function(List<ShareIntentAttachment>)? onSharedMedia;
Future<void> init();
}