@livetiles/reach-plugin-types 0.5.0-preview.876 → 0.5.0-preview.877
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
|
@@ -11353,6 +11353,7 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/pu
|
|
|
11353
11353
|
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11354
11354
|
interface IHeaderProps {
|
|
11355
11355
|
item: PostStreamItem;
|
|
11356
|
+
refreshList: () => Promise<void>;
|
|
11356
11357
|
}
|
|
11357
11358
|
const Header: React.FC<IHeaderProps>;
|
|
11358
11359
|
export default Header;
|
|
@@ -11361,6 +11362,7 @@ declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/pu
|
|
|
11361
11362
|
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|
|
11362
11363
|
interface IPublicationCardProps {
|
|
11363
11364
|
item: PostStreamItem;
|
|
11365
|
+
refreshList: () => Promise<void>;
|
|
11364
11366
|
}
|
|
11365
11367
|
const PublicationCard: React.FC<IPublicationCardProps>;
|
|
11366
11368
|
export default PublicationCard;
|