supabase / realtime-js

An isomorphic Javascript client for Supabase Realtime server.

Home Page:https://supabase.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow export of types used in realtime package

kyeshmz opened this issue · comments

Chore

Describe the chore

I need to take care the lifetime cycle of a realtime channel and make the player wait if it is not connected yet.

export enum CHANNEL_STATES {
  closed = 'closed',
  errored = 'errored',
  joined = 'joined',
  joining = 'joining',
  leaving = 'leaving',
}

inside of constants.

Thank you for reporting. Released today

supabase/supabase-js#893