@livetiles/reach-plugin-types 0.5.0-preview.613 → 0.5.0-preview.615
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 +13 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -11069,6 +11069,19 @@ declare module "libs/reach/feature/content/src/reach-2/comments/useCommentsQuery
|
|
|
11069
11069
|
fetchStatus: import("@tanstack/react-query").FetchStatus;
|
|
11070
11070
|
};
|
|
11071
11071
|
}
|
|
11072
|
+
declare module "libs/reach/feature/content/src/reach-2/comments/RepliesList" {
|
|
11073
|
+
import { FC } from 'react';
|
|
11074
|
+
import { Comment, ConversationScope, ItemResourceTypes, PaginatedList } from "libs/reach/util/common/src/index";
|
|
11075
|
+
interface RepliesListProps {
|
|
11076
|
+
parentItemId: string;
|
|
11077
|
+
itemResourceType: ItemResourceTypes;
|
|
11078
|
+
scope: ConversationScope;
|
|
11079
|
+
threadId: string;
|
|
11080
|
+
initialReplies?: PaginatedList<Comment>;
|
|
11081
|
+
replyCount?: number;
|
|
11082
|
+
}
|
|
11083
|
+
export const RepliesList: FC<RepliesListProps>;
|
|
11084
|
+
}
|
|
11072
11085
|
declare module "libs/reach/feature/content/src/reach-2/comments/CommentsList" {
|
|
11073
11086
|
import { FC } from 'react';
|
|
11074
11087
|
import { ConversationScope, ItemResourceTypes } from "libs/reach/util/common/src/index";
|