/**
 * Possible states for the RxStomp
 *
 * Part of `@stomp/rx-stomp`
 */
export enum RxStompState {
  CONNECTING,
  OPEN,
  CLOSING,
  CLOSED,
}
