]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/types/models/account/avatar.ts
Fix notification scrollbar color
[github/Chocobozzz/PeerTube.git] / server / types / models / account / avatar.ts
1 import { AvatarModel } from '../../../models/avatar/avatar'
2 import { FunctionProperties } from '@shared/core-utils'
3
4 export type MAvatar = AvatarModel
5
6 // ############################################################################
7
8 // Format for API or AP object
9
10 export type MAvatarFormattable =
11 FunctionProperties<MAvatar> &
12 Pick<MAvatar, 'filename' | 'createdAt' | 'updatedAt'>