mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
export const fileStub = {
|
|
livePhotoStill: Object.freeze({
|
|
originalPath: 'fake_path/asset_1.jpeg',
|
|
checksum: Buffer.from('file hash', 'utf8'),
|
|
originalName: 'asset_1.jpeg',
|
|
}),
|
|
livePhotoMotion: Object.freeze({
|
|
originalPath: 'fake_path/asset_1.mp4',
|
|
checksum: Buffer.from('live photo file hash', 'utf8'),
|
|
originalName: 'asset_1.mp4',
|
|
}),
|
|
};
|