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

export type MActorImage = ActorImageModel

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

// Format for API or AP object

export type MActorImageFormattable =
  FunctionProperties<MActorImage> &
  Pick<MActorImage, 'filename' | 'createdAt' | 'updatedAt'>