UNPKG

google-photos-migrate

Version:

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

12 lines (11 loc) 302 B
import { MetaType } from '../meta/MetaType'; export interface MediaFileAliasDetails { suffix: string; out: string; } export type MediaFileAlias = string | MediaFileAliasDetails; export interface MediaFileExtension { suffix: string; metaType: MetaType; aliases?: MediaFileAlias[]; }