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

export type MActorImage = ActorImageModel

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

// Format for API or AP object

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