Last active
February 20, 2017 16:21
-
-
Save ConnorRigby/7f5f548f1a273e1ac0689713b0f6f3e5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
interface Install { | |
kind: "install_farmware"; | |
args: { | |
url: string; | |
}; | |
body: any[]; | |
} | |
interface Uninstall { | |
kind: "uninstall_farmware"; | |
args: { | |
package: string; | |
}; | |
body: any[]; | |
} | |
interface Update { | |
kind: "update_farmware"; | |
args: { | |
package: string; | |
} | |
body: any[]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment