UNPKG

google-photos-migrate

Version:

A tool to fix EXIF data and recover filenames from a Google Photos takeout.

9 lines (8 loc) 243 B
import { MediaFileExtension } from './MediaFileExtension.js'; export interface MediaFileInfo { originalPath: string; path: string; ext?: MediaFileExtension; jsonPath?: string; } export type MediaFile = Required<MediaFileInfo>;