mirror of
https://github.com/immich-app/immich.git
synced 2025-12-25 01:11:43 +03:00
* Remove thumbnail generation on mobile * Remove tconditions for missing thumbnail on the backend * Remove console.log * Refactor queue systems * Convert queue and processor name to constant * Added corresponding interface to job queue
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import { AssetEntity } from '@app/database/entities/asset.entity';
|
|
|
|
export interface IMp4ConversionProcessor {
|
|
/**
|
|
* The Asset entity that was saved in the database
|
|
*/
|
|
asset: AssetEntity;
|
|
}
|
|
|
|
export type IVideoTranscodeJob = IMp4ConversionProcessor;
|