mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-26 09:25:51 +00:00
5 lines
199 B
TypeScript
5 lines
199 B
TypeScript
import { AssetEntity } from 'src/entities/asset.entity';
|
|
|
|
export const getAssetDateTime = (asset: AssetEntity | undefined) => {
|
|
return asset?.exifInfo?.dateTimeOriginal || asset?.fileCreatedAt;
|
|
};
|