Files
atom/src/stdlib/native.coffee
2012-06-12 10:52:11 -07:00

10 lines
224 B
CoffeeScript

module.exports =
class Native
@alert: (args...) -> $native.alert(args...)
@saveDialog: (args...) -> $native.saveDialog(args...)
@reload: -> $native.reload()
@moveToTrash: (args...) -> $native.moveToTrash(args...)