Skip to content

Instantly share code, notes, and snippets.

@nchanged
Created January 3, 2018 10:46
Show Gist options
  • Save nchanged/e56e8c68b106b1a1f95dda36e5c3cec9 to your computer and use it in GitHub Desktop.
Save nchanged/e56e8c68b106b1a1f95dda36e5c3cec9 to your computer and use it in GitHub Desktop.
imports example
import { checkPassword } from "fuse-ts-raw-package"
// that package contains "import" statement which
// is nicely handled (split) by FuseBox
async function testMe(){
const result = await checkPassword("123456");
console.log(result);
}
testMe();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment