mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2024-11-24 04:22:15 +00:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
export enum DECRYPTION_WORKER_ACTION_NAME {
|
|
DECRYPT = 'DECRYPT',
|
|
FIND_QMC_MUSICEX_NAME = 'FIND_QMC_MUSICEX_NAME',
|
|
VERSION = 'VERSION',
|
|
}
|
|
|
|
export interface DecryptionResult {
|
|
decrypted: string; // blob uri
|
|
ext: string;
|
|
}
|