mirror of
https://github.com/immich-app/immich.git
synced 2026-04-29 12:20:47 -04:00
* refactor: user repository * refactor: user module * refactor: move database into infra * refactor(cli): use user core * chore: import path * chore: tests
18 lines
394 B
TypeScript
18 lines
394 B
TypeScript
import { AssetEntity } from '@app/infra';
|
|
|
|
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;
|