@coveo/relay-event-types 7.7.1 → 7.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/relay-event-types.d.ts +5 -5
package/package.json
CHANGED
package/relay-event-types.d.ts
CHANGED
|
@@ -379,20 +379,20 @@ export namespace Qna {
|
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
/**
|
|
382
|
-
* Event to emit when a Q&A answer citation has been
|
|
382
|
+
* Event to emit when a Q&A answer citation item has been clicked.
|
|
383
383
|
*/
|
|
384
|
-
export interface
|
|
384
|
+
export interface CitationClick extends Base {
|
|
385
385
|
answer: QnaAnswer;
|
|
386
386
|
citation: QnaCitation;
|
|
387
|
-
citationHoverTimeInMs?: number;
|
|
388
387
|
}
|
|
389
388
|
|
|
390
389
|
/**
|
|
391
|
-
* Event to emit when a Q&A answer citation
|
|
390
|
+
* Event to emit when a Q&A answer citation has been hovered.
|
|
392
391
|
*/
|
|
393
|
-
export interface
|
|
392
|
+
export interface CitationHover extends Base {
|
|
394
393
|
answer: QnaAnswer;
|
|
395
394
|
citation: QnaCitation;
|
|
395
|
+
citationHoverTimeInMs?: number;
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
/**
|