Add comment property to DriveFile

Some components of Misskey like the image viewer use this property, but it hasn't been defined in the type definition itself.
This commit is contained in:
Norm 2022-07-21 21:20:45 -04:00 committed by GitHub
parent c17c42fa05
commit 28f244479c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,6 +117,7 @@ export type DriveFile = {
size: number;
md5: string;
blurhash: string;
comment: string;
properties: Record<string, any>;
};