mirror of
https://git.unlock-music.dev/um/web.git
synced 2025-02-24 14:31:29 +08:00
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;
|
|
}
|