@livetiles/reach-plugin-types 0.5.0-preview.792 → 0.5.0-preview.794
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 +3 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5010,11 +5010,11 @@ declare module "libs/reach/ui/common/src/common/LongPressUtil" {
|
|
|
5010
5010
|
export const DisableTextSelectionGlobally: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
|
|
5011
5011
|
}
|
|
5012
5012
|
declare module "libs/reach/ui/common/src/common/useVideosApi" {
|
|
5013
|
-
import { VideoSource } from "libs/reach/util/common/src/index";
|
|
5014
|
-
import { ItemResourceTypes } from "libs/reach/util/common/src/index";
|
|
5013
|
+
import { ItemResourceTypes, VideoSource } from "libs/reach/util/common/src/index";
|
|
5015
5014
|
export function useVideosApi(): {
|
|
5016
5015
|
getVideoThumbnailUrl: (token: string, subscriptionId: string, videoSource: VideoSource, videoId: string) => string;
|
|
5017
5016
|
getBannerVideoThumbnailUrl: (token: string, itemId: string, subscriptionId: string, resourceType: ItemResourceTypes) => string;
|
|
5017
|
+
uploadCustomVideoThumbnail: (token: string, itemId: string, subscriptionId: string, videoId: string, file: File) => Promise<Response>;
|
|
5018
5018
|
};
|
|
5019
5019
|
}
|
|
5020
5020
|
declare module "libs/reach/ui/common/src/common/user/Avatar" {
|
|
@@ -5578,6 +5578,7 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/index" {
|
|
|
5578
5578
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/MobileInlineModal";
|
|
5579
5579
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/ConfirmationDialog";
|
|
5580
5580
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/BasePopover";
|
|
5581
|
+
export { DialogType } from "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog";
|
|
5581
5582
|
}
|
|
5582
5583
|
declare module "libs/reach/ui/common/src/reach-2/progress/Skeleton" {
|
|
5583
5584
|
import { FC } from 'react';
|