mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
10 lines
224 B
CoffeeScript
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...)
|