added openUrl

This commit is contained in:
2017-03-12 21:20:43 +01:00
parent 319ac55fc5
commit 2d35883216
6 changed files with 42 additions and 1 deletions

5
ts/index.ts Normal file
View File

@ -0,0 +1,5 @@
import open = require('open')
export let openUrl = async (urlArg) => {
open(urlArg)
}