aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types/models/account/avatar.ts
blob: 0489a85992059dd39c60d7a0e8adc5b2c2e75643 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { AvatarModel } from '../../../models/avatar/avatar'
import { FunctionProperties } from '@shared/core-utils'

export type MAvatar = AvatarModel

// ############################################################################

// Format for API or AP object

export type MAvatarFormattable =
  FunctionProperties<MAvatar> &
  Pick<MAvatar, 'filename' | 'createdAt' | 'updatedAt'>