monkeeShark/packages/megalodon/src/misskey/entities/file.ts

21 lines
333 B
TypeScript
Raw Normal View History

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
}