mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-12-13 10:28:25 +00:00
20 lines
356 B
TypeScript
20 lines
356 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
|
|
comment?: string
|
|
blurhash?: string
|
|
thumbnailUrl: string
|
|
}
|
|
}
|