Skip to content

Commit

Permalink
Updated EncryptionMethods enum in index.d.ts to address issue mocking…
Browse files Browse the repository at this point in the history
  • Loading branch information
pvburger committed Jan 24, 2025
1 parent 5832515 commit b286a3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
declare module 'react-native-zip-archive' {
enum encryptionMethods {
'STANDARD',
'AES-128',
'AES-256'
enum EncryptionMethods {
STANDARD = "STANDARD",
AES_128 = "AES-128",
AES_256 = "AES-256"
}
import { NativeEventSubscription } from 'react-native';
export function isPasswordProtected(source: string): Promise<boolean>;
Expand Down

0 comments on commit b286a3b

Please sign in to comment.