@livetiles/reach-plugin-types 0.5.0-preview.39 → 0.5.0-preview.41
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/lib/index.d.ts +7 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -6732,6 +6732,12 @@ declare module "libs/reach/feature/content/src/common/AppTriggerActions" {
|
|
|
6732
6732
|
itemId: string;
|
|
6733
6733
|
static create(itemId: string): RefetchItemAction;
|
|
6734
6734
|
}
|
|
6735
|
+
export class RefetchStreamItemAction implements AppTriggerAction {
|
|
6736
|
+
static type: string;
|
|
6737
|
+
type: string;
|
|
6738
|
+
itemId: string;
|
|
6739
|
+
static create(itemId: string): RefetchStreamItemAction;
|
|
6740
|
+
}
|
|
6735
6741
|
}
|
|
6736
6742
|
declare module "libs/reach/feature/content/src/comments/CommentFilter" {
|
|
6737
6743
|
export interface CommentFilter {
|
|
@@ -11378,6 +11384,7 @@ declare module "libs/reach/feature/content/src/stream/streamUtils" {
|
|
|
11378
11384
|
poll?: import("@livetiles/reach/util/common").Poll;
|
|
11379
11385
|
searchHighlights?: import("@livetiles/reach/util/common").SearchHighlightSummary;
|
|
11380
11386
|
})[];
|
|
11387
|
+
export function updateStreamItemStatistics(items: StreamItem[], updatedItem: StreamItem): StreamItem[];
|
|
11381
11388
|
}
|
|
11382
11389
|
declare module "libs/reach/feature/content/src/stream/useStreamItemsQuery" {
|
|
11383
11390
|
import { StreamItem } from "libs/reach/feature/content/src/stream/streamUtils";
|