blob: 8af6cc787768b170d1dfa047c4ceaa7fdb3b2cff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { AvatarModel } from '../../../models/avatar/avatar'
import { FunctionProperties } from '@server/typings/utils'
export type MAvatar = AvatarModel
// ############################################################################
// Format for API or AP object
export type MAvatarFormattable = FunctionProperties<MAvatar> &
Pick<MAvatar, 'filename' | 'createdAt' | 'updatedAt'>
|