@livetiles/reach-plugin-types 0.5.0-preview.792 → 0.5.0-preview.793
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 -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" {
|