import { KittenCloudDataUpdateCommand } from "./kitten-cloud-data-update-command";
export class KittenCloudVariableUpdateCommand extends KittenCloudDataUpdateCommand {
constructor(source, variable) {
super(source, variable);
this.variable = variable;
}
}