@@ -123,7 +123,7 @@ export interface CallableRequest<T = any> {
123
123
data : T ;
124
124
125
125
/**
126
- * The result of decoding and verifying a Firebase AppCheck token.
126
+ * The result of decoding and verifying a Firebase App Check token.
127
127
*/
128
128
app ?: AppCheckData ;
129
129
@@ -145,15 +145,15 @@ export interface CallableRequest<T = any> {
145
145
/**
146
146
* Whether this is a streaming request.
147
147
* Code can be optimized by not trying to generate a stream of chunks to
148
- * call response.sendChunk on if request.acceptsStreaming is false.
149
- * It is always safe, however, to call response.sendChunk as this will
150
- * noop if acceptsStreaming is false.
148
+ * call ` response.sendChunk` if ` request.acceptsStreaming` is false.
149
+ * It is always safe, however, to call ` response.sendChunk` as this will
150
+ * noop if ` acceptsStreaming` is false.
151
151
*/
152
152
acceptsStreaming : boolean ;
153
153
}
154
154
155
155
/**
156
- * CallableProxyResponse allows streaming response chunks and listening to signals
156
+ * ` CallableProxyResponse` allows streaming response chunks and listening to signals
157
157
* triggered in events such as a disconnect.
158
158
*/
159
159
export interface CallableResponse < T = unknown > {
@@ -166,7 +166,7 @@ export interface CallableResponse<T = unknown> {
166
166
sendChunk : ( chunk : T ) => Promise < boolean > ;
167
167
168
168
/**
169
- * An AbortSignal that is triggered when the client disconnects or the
169
+ * An ` AbortSignal` that is triggered when the client disconnects or the
170
170
* request is terminated prematurely.
171
171
*/
172
172
signal : AbortSignal ;
0 commit comments