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