@livetiles/reach-plugin-types 0.5.0-preview.797 → 0.5.0-preview.799
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 +7 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -6552,7 +6552,7 @@ declare module "libs/reach/feature/content/src/forms/videos/VideoCustomThumbnail
|
|
|
6552
6552
|
}
|
|
6553
6553
|
declare module "libs/reach/feature/content/src/forms/videos/InsertVideoDialog" {
|
|
6554
6554
|
import { FC } from 'react';
|
|
6555
|
-
import { VideoSource } from "libs/reach/util/common/src/index";
|
|
6555
|
+
import { BannerInfo, VideoSource } from "libs/reach/util/common/src/index";
|
|
6556
6556
|
export interface VideoInfo {
|
|
6557
6557
|
id: string;
|
|
6558
6558
|
source: VideoSource;
|
|
@@ -6564,6 +6564,12 @@ declare module "libs/reach/feature/content/src/forms/videos/InsertVideoDialog" {
|
|
|
6564
6564
|
onCancel: () => void;
|
|
6565
6565
|
onSave: (videoInfo: VideoInfo, customThumbnail?: File) => void;
|
|
6566
6566
|
isOpen?: boolean;
|
|
6567
|
+
initialDataProps?: {
|
|
6568
|
+
bannerInfo: BannerInfo;
|
|
6569
|
+
itemId: string;
|
|
6570
|
+
token: string;
|
|
6571
|
+
subscriptionId: string;
|
|
6572
|
+
};
|
|
6567
6573
|
}>;
|
|
6568
6574
|
}
|
|
6569
6575
|
declare module "libs/reach/feature/content/src/forms/videos/VideoElementGenerator" {
|