mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
9 lines
203 B
TypeScript
9 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[];
|
|
};
|