web/src/decrypt/entity.ts

26 lines
374 B
TypeScript
Raw Normal View History

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