mirror of
https://git.unlock-music.dev/um/web.git
synced 2025-02-24 22:41:28 +08:00
19 lines
284 B
TypeScript
19 lines
284 B
TypeScript
![]() |
export interface DecryptResult {
|
||
|
status: boolean,//todo: remove & use Exception
|
||
|
|
||
|
title: string
|
||
|
album?: string
|
||
|
artist?: string
|
||
|
|
||
|
mime: string
|
||
|
ext: string
|
||
|
|
||
|
file: string
|
||
|
picture: string
|
||
|
|
||
|
message?: string
|
||
|
rawExt?: string
|
||
|
rawFilename?: string
|
||
|
|
||
|
}
|