diff options
Diffstat (limited to 'src/models/entities')
| -rw-r--r-- | src/models/entities/drive-file.ts | 2 |
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') |