2023-09-23 16:49:47 +00:00
|
|
|
namespace MisskeyEntity {
|
2023-09-24 23:20:03 +00:00
|
|
|
export type File = {
|
|
|
|
id: string;
|
|
|
|
createdAt: string;
|
|
|
|
name: string;
|
|
|
|
type: string;
|
|
|
|
md5: string;
|
|
|
|
size: number;
|
|
|
|
isSensitive: boolean;
|
|
|
|
properties: {
|
|
|
|
width: number;
|
|
|
|
height: number;
|
|
|
|
avgColor: string;
|
|
|
|
};
|
|
|
|
url: string;
|
|
|
|
thumbnailUrl: string;
|
|
|
|
comment: string;
|
|
|
|
blurhash: string;
|
|
|
|
};
|
2023-09-23 16:49:47 +00:00
|
|
|
}
|