summaryrefslogtreecommitdiff
path: root/src/models/entities
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2021-03-13 22:15:20 +0900
committerGitHub <noreply@github.com>2021-03-13 22:15:20 +0900
commit9e634360fa1d95f7d5c1aa8654c8f64e459ae07d (patch)
tree25adfc0ece5657da11e2c00570991234d4131c23 /src/models/entities
parenttest: Add apple-touch-icon.png test (diff)
downloadmisskey-9e634360fa1d95f7d5c1aa8654c8f64e459ae07d.tar.gz
misskey-9e634360fa1d95f7d5c1aa8654c8f64e459ae07d.tar.bz2
misskey-9e634360fa1d95f7d5c1aa8654c8f64e459ae07d.zip
Fix Schema (#7347)
Diffstat (limited to 'src/models/entities')
-rw-r--r--src/models/entities/drive-file.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/entities/drive-file.ts b/src/models/entities/drive-file.ts
index 680a40bc06..698dfac222 100644
--- a/src/models/entities/drive-file.ts
+++ b/src/models/entities/drive-file.ts
@@ -77,7 +77,7 @@ export class DriveFile {
default: {},
comment: 'The any properties of the DriveFile. For example, it includes image width/height.'
})
- public properties: Record<string, any>;
+ public properties: { width?: number; height?: number; avgColor?: string };
@Index()
@Column('boolean')