]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/types/models/account/actor-image.ts
Move transcoding files in their own directory
[github/Chocobozzz/PeerTube.git] / server / types / models / account / actor-image.ts
CommitLineData
f4796856
C
1import { ActorImageModel } from '../../../models/account/actor-image'
2import { FunctionProperties } from '@shared/core-utils'
3
4export type MActorImage = ActorImageModel
5
6// ############################################################################
7
8// Format for API or AP object
9
10export type MActorImageFormattable =
11 FunctionProperties<MActorImage> &
12 Pick<MActorImage, 'filename' | 'createdAt' | 'updatedAt'>