web/src/decrypt/entity.ts

26 lines
367 B
TypeScript
Raw Normal View History

export interface DecryptResult {
2021-12-18 13:55:31 +00:00
title: string;
album?: string;
artist?: string;
2021-12-18 13:55:31 +00:00
mime: string;
ext: string;
2021-12-18 13:55:31 +00:00
file: string;
blob: Blob;
picture?: string;
2021-12-18 13:55:31 +00:00
message?: string;
rawExt?: string;
rawFilename?: string;
}
2021-05-24 14:19:37 +00:00
export interface FileInfo {
2021-12-18 13:55:31 +00:00
status: string;
name: string;
size: number;
percentage: number;
uid: number;
raw: File;
2021-05-24 14:19:37 +00:00
}