17 lines
233 B
TypeScript
Raw Normal View History

export interface DecryptResult {
title: string
album?: string
artist?: string
mime: string
ext: string
file: string
2021-05-24 05:04:16 +08:00
picture?: string
message?: string
rawExt?: string
rawFilename?: string
}