mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +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[];
|
||
|
|
};
|