aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/typings/models/account/avatar.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/typings/models/account/avatar.ts')
-rw-r--r--server/typings/models/account/avatar.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/typings/models/account/avatar.ts b/server/typings/models/account/avatar.ts
index 8af6cc787..21b47180f 100644
--- a/server/typings/models/account/avatar.ts
+++ b/server/typings/models/account/avatar.ts
@@ -7,5 +7,6 @@ export type MAvatar = AvatarModel
7 7
8// Format for API or AP object 8// Format for API or AP object
9 9
10export type MAvatarFormattable = FunctionProperties<MAvatar> & 10export type MAvatarFormattable =
11 FunctionProperties<MAvatar> &
11 Pick<MAvatar, 'filename' | 'createdAt' | 'updatedAt'> 12 Pick<MAvatar, 'filename' | 'createdAt' | 'updatedAt'>