aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/types/models/account/avatar.ts
blob: 6eba59ee4e6996cd8cbd5059e84ecee032cf8ccf (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                           
                                                        

                                 




                                                                               

                                
                                                       
import { AvatarModel } from '../../../models/avatar/avatar'
import { FunctionProperties } from '@server/types/utils'

export type MAvatar = AvatarModel

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

// Format for API or AP object

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