@@ -19,7 +19,7 @@ interface BaseMessagingConfig {
1919
2020Shared configuration between all the different messengers.
2121
22- ### Properties
22+ ### Properties
2323
2424- *** ` logger?: Logger ` *** (default: ` console ` )<br />The logger to use when logging messages. Set to ` null ` to disable logging.
2525
@@ -35,7 +35,7 @@ interface CustomEventMessage {
3535
3636Additional fields available on the ` Message ` from a ` CustomEventMessenger ` .
3737
38- ### Properties
38+ ### Properties
3939
4040- *** ` event: CustomEvent ` *** <br />The event that was fired, resulting in the message being passed.
4141
@@ -153,7 +153,7 @@ interface ExtensionMessage {
153153
154154Additional fields available on the ` Message ` from an ` ExtensionMessenger ` .
155155
156- ### Properties
156+ ### Properties
157157
158158- *** ` sender: Runtime.MessageSender ` *** <br />Information about where the message came from. See
159159[ ` Runtime.MessageSender ` ] ( https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/runtime/MessageSender ) .
@@ -256,7 +256,7 @@ interface Logger {
256256}
257257```
258258
259- Interface used to log text to the console when sending and recieving messages.
259+ Interface used to log text to the console when sending and receiving messages.
260260
261261## ` MaybePromise `
262262
@@ -281,9 +281,9 @@ interface Message<
281281}
282282```
283283
284- Contains information about the message recieved .
284+ Contains information about the message received .
285285
286- ### Properties
286+ ### Properties
287287
288288- *** ` id: number ` *** <br />A semi-unique, auto-incrementing number used to trace messages being sent.
289289
@@ -306,7 +306,7 @@ interface MessageSender {
306306
307307An object containing information about the script context that sent a message or request.
308308
309- ### Properties
309+ ### Properties
310310
311311- *** ` tab?: Tabs.Tab ` *** <br />The $(ref: tabs .Tab) which opened the connection, if any. This property will <strong >only</strong >
312312be present when the connection was opened from a tab (including content scripts), and <strong >only</strong >
@@ -332,7 +332,7 @@ interface NamespaceMessagingConfig extends BaseMessagingConfig {
332332}
333333```
334334
335- ### Properties
335+ ### Properties
336336
337337- *** ` namespace: string ` *** <br />A string used to ensure the messenger only sends messages to and listens for messages from
338338other messengers of the same type, with the same namespace.
@@ -354,7 +354,7 @@ Used to add a return type to a message in the protocol map.
354354
355355> Internally, this is just an object with random keys for the data and return types.
356356
357- ### Properties
357+ ### Properties
358358
359359- *** ` BtVgCTPYZu: TData ` *** <br />Stores the data type. Randomly named so that it isn't accidentally implemented.
360360
@@ -392,7 +392,7 @@ interface SendMessageOptions {
392392
393393Options for sending a message to a specific tab/frame
394394
395- ### Properties
395+ ### Properties
396396
397397- *** ` tabId: number ` *** <br />The tab to send a message to
398398
@@ -429,4 +429,4 @@ details.
429429
430430---
431431
432- _ API reference generated by [ ` docs/generate-api-references.ts ` ] ( https://github.com/aklinker1/webext-core/blob/main/docs/generate-api-references.ts ) _
432+ _ API reference generated by [ ` docs/generate-api-references.ts ` ] ( https://github.com/aklinker1/webext-core/blob/main/docs/generate-api-references.ts ) _
0 commit comments