File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
14
14
limitations under the License.
15
15
*/
16
16
17
- export type RendezvousFailureListener = ( reason : RendezvousFailureReason ) => void ;
17
+ export type RendezvousFailureListener = ( reason : LegacyRendezvousFailureReason ) => void ;
18
18
19
- export enum RendezvousFailureReason {
19
+ export enum LegacyRendezvousFailureReason {
20
20
UserDeclined = "user_declined" ,
21
21
OtherDeviceNotSignedIn = "other_device_not_signed_in" ,
22
22
OtherDeviceAlreadySignedIn = "other_device_already_signed_in" ,
@@ -29,3 +29,8 @@ export enum RendezvousFailureReason {
29
29
UnsupportedTransport = "unsupported_transport" ,
30
30
HomeserverLacksSupport = "homeserver_lacks_support" ,
31
31
}
32
+
33
+ /**
34
+ * @deprecated legacy re-export
35
+ */
36
+ export { LegacyRendezvousFailureReason as RendezvousFailureReason } ;
You can’t perform that action at this time.
0 commit comments