mirror of
https://git.vectorsigma.ru/public/immich.git
synced 2026-08-06 03:28:20 +00:00
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import { UserEntity } from 'src/entities/user.entity';
|
|
import { Permission } from 'src/enum';
|
|
|
|
export type AuthApiKey = {
|
|
id: string;
|
|
key: string;
|
|
user: UserEntity;
|
|
permissions: Permission[];
|
|
};
|