Skip to content

Commit

Permalink
fix js_interop import
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Jul 28, 2024
1 parent b0033c4 commit 795f15f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app_prefs/lib/src/prefs.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export 'package:tekartik_prefs/prefs.dart';

export 'prefs_stub.dart'
if (dart.library.html) 'prefs_web.dart'
if (dart.library.js_interop) 'prefs_web.dart'
if (dart.library.io) 'prefs_io.dart';
2 changes: 1 addition & 1 deletion app_sembast/lib/src/sembast.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
library;

export 'sembast_stub.dart'
if (dart.library.html) 'sembast_web.dart'
if (dart.library.js_interop) 'sembast_web.dart'
if (dart.library.io) 'sembast_io.dart';
2 changes: 1 addition & 1 deletion app_web_socket/lib/src/web_socket.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export 'web_socket_stub.dart'
if (dart.library.html) 'web_socket_web.dart'
if (dart.library.js_interop) 'web_socket_web.dart'
if (dart.library.io) 'web_socket_io.dart';

0 comments on commit 795f15f

Please sign in to comment.