web/src/decrypt/entity.ts

27 lines
389 B
TypeScript
Raw Normal View History

export interface DecryptResult {
title: string
album?: string
artist?: string
mime: string
ext: string
file: string
2021-05-24 21:06:28 +02:00
blob: Blob
2021-05-23 23:04:16 +02:00
picture?: string
message?: string
rawExt?: string
rawFilename?: string
}
2021-05-24 16:19:37 +02:00
export interface FileInfo {
status: string
name: string,
size: number,
percentage: number,
uid: number,
raw: File
}