mirror of
https://github.com/immich-app/immich.git
synced 2025-11-28 01:39:55 +09:00
refactor: migration tag repository to kysely (#16398)
This commit is contained in:
@@ -37,6 +37,15 @@ export type MemoryItem =
|
||||
|
||||
export type SessionItem = Awaited<ReturnType<ISessionRepository['getByUserId']>>[0];
|
||||
|
||||
export type TagItem = {
|
||||
id: string;
|
||||
value: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
color: string | null;
|
||||
parentId: string | null;
|
||||
};
|
||||
|
||||
export interface CropOptions {
|
||||
top: number;
|
||||
left: number;
|
||||
|
||||
Reference in New Issue
Block a user