mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 01:11:16 +03:00
18 lines
419 B
TypeScript
18 lines
419 B
TypeScript
|
|
import { AssetEntity } from '@app/database/entities/asset.entity';
|
||
|
|
|
||
|
|
export interface JpegGeneratorProcessor {
|
||
|
|
/**
|
||
|
|
* The Asset entity that was saved in the database
|
||
|
|
*/
|
||
|
|
asset: AssetEntity;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface WebpGeneratorProcessor {
|
||
|
|
/**
|
||
|
|
* The Asset entity that was saved in the database
|
||
|
|
*/
|
||
|
|
asset: AssetEntity;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type IThumbnailGenerationJob = JpegGeneratorProcessor | WebpGeneratorProcessor;
|