76dd78130a
(cherry picked from commit cad5b4d7deba4fbe4a40a17306ce49d3b2f13139)
26 lines
367 B
TypeScript
26 lines
367 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;
|
|
}
|