@livetiles/reach-plugin-types 0.5.0-preview.880 → 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 +15 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -11351,10 +11351,23 @@ 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;
|
|
11370
|
+
onEdit: () => void;
|
|
11358
11371
|
refreshList: () => Promise<void>;
|
|
11359
11372
|
}
|
|
11360
11373
|
const Header: React.FC<IHeaderProps>;
|
|
@@ -11364,6 +11377,7 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/pu
|
|
|
11364
11377
|
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11365
11378
|
interface IPublicationCardProps {
|
|
11366
11379
|
item: PostStreamItem;
|
|
11380
|
+
onEdit: () => void;
|
|
11367
11381
|
refreshList: () => Promise<void>;
|
|
11368
11382
|
}
|
|
11369
11383
|
const PublicationCard: React.FC<IPublicationCardProps>;
|