We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5832515 commit 68fa78cCopy full SHA for 68fa78c
index.d.ts
@@ -1,8 +1,8 @@
1
declare module 'react-native-zip-archive' {
2
- enum encryptionMethods {
3
- 'STANDARD',
4
- 'AES-128',
5
- 'AES-256'
+ enum EncryptionMethods {
+ STANDARD = "STANDARD",
+ AES_128 = "AES-128",
+ AES_256 = "AES-256"
6
}
7
import { NativeEventSubscription } from 'react-native';
8
export function isPasswordProtected(source: string): Promise<boolean>;
0 commit comments