import { Verb } from '../Verb'; /** * @export * @class StopGather * @extends {Verb} * Represents a StopGather verb */ export class StopGather extends Verb { /** * Creates an instance of StopGather */ constructor() { super('StopGather'); } }