@livetiles/reach-plugin-types 0.5.0-preview.881 → 0.5.0-preview.882
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 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -11351,7 +11351,19 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/pu
|
|
|
11351
11351
|
const Footer: React.FC<IFooterProps>;
|
|
11352
11352
|
export default Footer;
|
|
11353
11353
|
}
|
|
11354
|
-
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/
|
|
11354
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/header/DeletePublicationModal" {
|
|
11355
|
+
import { FC } from 'react';
|
|
11356
|
+
import { PostStreamItem } from "libs/reach/feature/content/src/index";
|
|
11357
|
+
interface AddMediaModalProps {
|
|
11358
|
+
isOpen?: boolean;
|
|
11359
|
+
item: PostStreamItem;
|
|
11360
|
+
onDelete: () => void;
|
|
11361
|
+
onDismiss: () => void;
|
|
11362
|
+
}
|
|
11363
|
+
const DeletePublicationModal: FC<AddMediaModalProps>;
|
|
11364
|
+
export default DeletePublicationModal;
|
|
11365
|
+
}
|
|
11366
|
+
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/header/Header" {
|
|
11355
11367
|
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11356
11368
|
interface IHeaderProps {
|
|
11357
11369
|
item: PostStreamItem;
|