refactor: add export & order package exports
This commit is contained in:
parent
d2ee73f96f
commit
06281d1361
|
|
@ -21,25 +21,27 @@
|
|||
library matrix;
|
||||
|
||||
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/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_id_string_extension.dart';
|
||||
export 'src/utils/uri_extension.dart';
|
||||
export 'src/utils/matrix_localizations.dart';
|
||||
export 'src/utils/receipt.dart';
|
||||
export 'src/utils/sync_update_extension.dart';
|
||||
export 'src/utils/to_device_event.dart';
|
||||
export 'src/utils/uia_request.dart';
|
||||
export 'src/utils/commands_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/utils/uri_extension.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';
|
||||
|
|
|
|||
Loading…
Reference in New Issue