UNPKG

google-photos-migrate

Version:

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

13 lines (12 loc) 402 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MediaMigrationError = void 0; const MigrationError_1 = require("../MigrationError"); class MediaMigrationError extends MigrationError_1.MigrationError { failedMedia; constructor(failedMedia) { super(); this.failedMedia = failedMedia; } } exports.MediaMigrationError = MediaMigrationError;