@livetiles/reach-plugin-types 0.5.0-preview.660 → 0.5.0-preview.662
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 +4 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -7655,7 +7655,7 @@ declare module "libs/reach/feature/content/src/comments/ThreadContext" {
|
|
|
7655
7655
|
}
|
|
7656
7656
|
declare module "libs/reach/feature/content/src/comments/useCommentsPageLoader" {
|
|
7657
7657
|
import { Comment, ConversationScope, ItemResourceTypes, PaginatedList } from "libs/reach/util/common/src/index";
|
|
7658
|
-
type commentType = Comment & {
|
|
7658
|
+
export type commentType = Comment & {
|
|
7659
7659
|
isNewComment?: boolean;
|
|
7660
7660
|
};
|
|
7661
7661
|
type nextPageInfosType = {
|
|
@@ -10698,6 +10698,9 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentDisplay"
|
|
|
10698
10698
|
className?: string;
|
|
10699
10699
|
}>;
|
|
10700
10700
|
}
|
|
10701
|
+
declare module "libs/reach/feature/content/src/reach-2/comments/utils" {
|
|
10702
|
+
export const NewListItemAnimation: (selector: string) => import("styled-components").FlattenSimpleInterpolation;
|
|
10703
|
+
}
|
|
10701
10704
|
declare module "libs/reach/feature/content/src/reach-2/comments/RepliesList" {
|
|
10702
10705
|
import { FC } from 'react';
|
|
10703
10706
|
import { Comment, ConversationScope, ItemResourceTypes, PaginatedList } from "libs/reach/util/common/src/index";
|