web/src/decrypt/entity.ts

26 lines
374 B
TypeScript

export interface DecryptResult {
title: string
album?: string
artist?: string
mime: string
ext: string
file: string
picture?: string
message?: string
rawExt?: string
rawFilename?: string
}
export interface FileInfo {
status: string
name: string,
size: number,
percentage: number,
uid: number,
raw: File
}