Created
May 25, 2016 14:32
-
-
Save theefer/5a7629c88bdc766294d4badecd1e80ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@JS('darttest') | |
library darttest; | |
import 'package:js/js.dart'; | |
@JS() | |
external FooBar getFooBar(); | |
@JS() | |
class FooBar { | |
external String test1(); | |
} | |
@JS() | |
external Node getNode(); | |
@JS() | |
class Node { | |
external String test2(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment