Skip to content

Commit

Permalink
Merge pull request #46 from koji-1009/feat/js_interop
Browse files Browse the repository at this point in the history
feat: Use new const value
  • Loading branch information
koji-1009 authored Jul 19, 2024
2 parents b3bf317 + d18cdd6 commit be610f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/src/network/shared.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export 'unsupported.dart'
if (dart.library.ffi) 'native.dart'
if (dart.library.html) 'web.dart';
if (dart.library.io) 'native.dart'
if (dart.library.js_interop) 'web.dart';
4 changes: 2 additions & 2 deletions lib/src/storage/shared.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export 'unsupported.dart'
if (dart.library.ffi) 'native.dart'
if (dart.library.html) 'web.dart';
if (dart.library.io) 'native.dart'
if (dart.library.js_interop) 'web.dart';

0 comments on commit be610f4

Please sign in to comment.