refactor: add export & order package exports

This commit is contained in:
Jindra 2021-10-25 17:51:20 +02:00
parent d2ee73f96f
commit 06281d1361
1 changed files with 15 additions and 13 deletions

View File

@ -21,25 +21,27 @@
library matrix; library matrix;
export 'package:matrix_api_lite/matrix_api_lite.dart'; export 'package:matrix_api_lite/matrix_api_lite.dart';
export 'src/utils/event_update.dart';
export 'src/utils/image_pack_extension.dart'; export 'src/client.dart';
export 'src/database/database_api.dart';
export 'src/database/hive_database.dart';
export 'src/event.dart';
export 'src/event_status.dart';
export 'src/room.dart';
export 'src/timeline.dart';
export 'src/user.dart';
export 'src/utils/commands_extension.dart';
export 'src/utils/crypto/encrypted_file.dart';
export 'src/utils/device_keys_list.dart'; export 'src/utils/device_keys_list.dart';
export 'src/utils/event_update.dart';
export 'src/utils/http_timeout.dart';
export 'src/utils/image_pack_extension.dart';
export 'src/utils/matrix_file.dart'; export 'src/utils/matrix_file.dart';
export 'src/utils/matrix_id_string_extension.dart'; export 'src/utils/matrix_id_string_extension.dart';
export 'src/utils/uri_extension.dart';
export 'src/utils/matrix_localizations.dart'; export 'src/utils/matrix_localizations.dart';
export 'src/utils/receipt.dart'; export 'src/utils/receipt.dart';
export 'src/utils/sync_update_extension.dart'; export 'src/utils/sync_update_extension.dart';
export 'src/utils/to_device_event.dart'; export 'src/utils/to_device_event.dart';
export 'src/utils/uia_request.dart'; export 'src/utils/uia_request.dart';
export 'src/utils/commands_extension.dart'; export 'src/utils/uri_extension.dart';
export 'src/utils/http_timeout.dart';
export 'src/client.dart';
export 'src/event.dart';
export 'src/event_status.dart';
export 'src/room.dart';
export 'src/voip_content.dart'; export 'src/voip_content.dart';
export 'src/timeline.dart';
export 'src/user.dart';
export 'src/database/database_api.dart';
export 'src/database/hive_database.dart';