instagram-publisher
Version:
Publish Instagram Images, Image Slideshows, Video Reels & Stories via NodeJS
10 lines (9 loc) • 357 B
TypeScript
import { MediaUploadRes } from '../../types';
declare function uploadVideoThumbnail({ image_path, video_upload_id, video_height, video_width, is_reel, }: {
image_path: string;
video_upload_id: string;
video_width: number;
video_height: number;
is_reel: boolean;
}): Promise<MediaUploadRes>;
export default uploadVideoThumbnail;