mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 09:13:17 +03: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();
|
||
|
|
}
|