firefish/packages/megalodon/src/misskey/entities/file.ts
ThatOneCalculator a75a19cd17
chore: 🚨 lint megalodon
2023-09-01 16:36:33 -07:00

21 lines
333 B
TypeScript

namespace MisskeyEntity {
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;
};
}