This repository has been archived on 2022-11-08. You can view files and clone it, but cannot push or open issues or pull requests.
web-archived/src/decrypt/entity.ts

27 lines
389 B
TypeScript

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