mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
8 lines
220 B
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();
|
||
|
|
}
|