web/src/decrypt/entity.ts

19 lines
285 B
TypeScript
Raw Normal View History

export interface DecryptResult {
status: boolean,//todo: remove & use Exception
title: string
album?: string
artist?: string
mime: string
ext: string
file: string
2021-05-23 21:04:16 +00:00
picture?: string
message?: string
rawExt?: string
rawFilename?: string
}