@livetiles/reach-plugin-types 0.5.0-preview.285 → 0.5.0-preview.286
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
|
@@ -7459,7 +7459,7 @@ declare module "libs/reach/feature/content/src/feedback/index" {
|
|
|
7459
7459
|
declare module "libs/reach/feature/content/src/comments/FollowComments" {
|
|
7460
7460
|
import { FC } from 'react';
|
|
7461
7461
|
import { ConversationScope, ItemResourceTypes } from "libs/reach/util/common/src/index";
|
|
7462
|
-
interface Props {
|
|
7462
|
+
export interface Props {
|
|
7463
7463
|
type: ItemResourceTypes;
|
|
7464
7464
|
itemId: string;
|
|
7465
7465
|
recurrenceSeriesId?: string;
|
|
@@ -10095,6 +10095,9 @@ declare module "libs/reach/feature/content/src/feedback/buttons/FeedbackButtonCo
|
|
|
10095
10095
|
isReadOnly?: boolean;
|
|
10096
10096
|
}>;
|
|
10097
10097
|
}
|
|
10098
|
+
declare module "libs/reach/feature/content/src/feedback/buttons/FeedbackFollowButton" {
|
|
10099
|
+
export const FeedbackFollowButton: import("styled-components").StyledComponent<import("react").FC<import("libs/reach/feature/content/src/comments/FollowComments").Props>, import("styled-components").DefaultTheme, {}, never>;
|
|
10100
|
+
}
|
|
10098
10101
|
declare module "libs/reach/feature/content/src/common/detail/events/controls/EventDetailViewFeedbackSection" {
|
|
10099
10102
|
import { FC } from 'react';
|
|
10100
10103
|
export const EventDetailViewFeedbackSection: FC<{
|