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