You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
367 B
25 lines
367 B
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;
|
|
}
|
|
|