Skip to content

Instantly share code, notes, and snippets.

@ConnorRigby
Last active February 20, 2017 16:21
Show Gist options
  • Save ConnorRigby/7f5f548f1a273e1ac0689713b0f6f3e5 to your computer and use it in GitHub Desktop.
Save ConnorRigby/7f5f548f1a273e1ac0689713b0f6f3e5 to your computer and use it in GitHub Desktop.
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