We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa44d52 commit c424340Copy full SHA for c424340
packages/firebase/compat/index.d.ts
@@ -6018,6 +6018,20 @@ declare namespace firebase.database {
6018
* ```
6019
*/
6020
app: firebase.app.App;
6021
+ /**
6022
+ * Additional methods for debugging and special cases.
6023
+ *
6024
+ */
6025
+ INTERNAL: {
6026
6027
+ * Force the use of WebSockets instead of long polling.
6028
6029
+ forceWebSockets: () => void;
6030
6031
+ * Force the use of long polling instead of WebSockets. This will be ignored if the WebSocket protocol is used in `databaseURL`.
6032
6033
+ forceLongPolling: () => void;
6034
+ };
6035
/**
6036
* Modify this instance to communicate with the Realtime Database emulator.
6037
*
0 commit comments