forked from ammarahm-ed/react-native-mmkv-storage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
491 lines (424 loc) · 12.7 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
declare function MMKVStorage(): any;
type StoredValueAndSetter<T> = [T | null, (value: T | ((prevValue: T) => T)) => void];
export declare function useMMKVStorage<T = any>(
key: string,
storage: MMKVStorage.API
): StoredValueAndSetter<T>;
export declare function create(storage:MMKVStorage.API):<T = any>(key:string) => StoredValueAndSetter<T>;
export default MMKVStorage;
type ACCESSIBLE = {
WHEN_UNLOCKED: string;
AFTER_FIRST_UNLOCK: string;
ALWAYS: string;
WHEN_PASSCODE_SET_THIS_DEVICE_ONLY: string;
WHEN_UNLOCKED_THIS_DEVICE_ONLY: string;
AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY: string;
ALWAYS_THIS_DEVICE_ONLY: string;
};
type MODES = {
SINGLE_PROCESS: number;
MULTI_PROCESS: number;
};
type Callback<T> = (error: Error | null, result: T | null | undefined) => void;
declare module MMKVStorage {
export const MODES: MODES;
export const ACCESSIBLE: ACCESSIBLE;
export declare function getAllMMKVInstanceIDs(): string[];
export declare function getCurrentMMKVInstanceIDs(): Record<string, boolean>;
export const IDSTORE_ID: string;
const myVar: string;
class API {
/**
* Set a string value to storage for a given key.
* This method is added for redux-persist support. It is similar to setStringAsync()
*
* @param {String} key
* @param {String} value
*
*/
setItem(key: string, value: string): Promise<boolean | undefined>;
/**
* Get a string value for a given key.
* This method is added for redux-persist support. It is similar to setStringAsync()
* @param {String} key
*/
getItem(key: string): Promise<string | null | undefined>;
/**
* Set a string value to storag for a given key.
*
* @param {String} key
* @param {String} value
*
*/
setStringAsync(key: string, value: string): Promise<boolean | undefined>;
/**
* Get a string value for a given key.
* @param {String} key
*/
getStringAsync(key: string): Promise<string | null | undefined>;
/**
* Set a number value to storage for a given key.
*
* @param {String} key
* @param {number} value
*
*/
setIntAsync(key: string, value: number): Promise<boolean | undefined>;
/**
* Get a number value for a given key
* @param {String} key
*/
getIntAsync(key: string): Promise<number | null | undefined>;
/**
* Set a boolean value to storag for a given key.
*
* @param {String} key
* @param {boolean} value
*
*/
setBoolAsync(key: string, value: boolean): Promise<boolean | undefined>;
/**
* Get a boolean value for a given key.
* @param {String} key
*/
getBoolAsync(key: string): Promise<boolean | null | undefined>;
/**
* Set an Object to storage for a given key.
*
* @param {String} key
* @param {Object} value
*
*/
setMapAsync(key: string, value: object): Promise<boolean | undefined>;
/**
* Get an Object from storage for a given key.
* @param {String} key
*/
getMapAsync<T extends object>(key: string): Promise<T | null | undefined>;
/**
* Set an array to the db.
* @param {String} key
* @param {Array} array
*/
setArrayAsync(key: string, value: Array<any>): Promise<boolean | undefined>;
/**
* get an array from the storage for give key.
* @param {String} key
*/
getArrayAsync<T extends any>(key: string): Promise<Array<T> | null | undefined>;
/**
* Retrieve multiple Objects for a given array of keys. Currently will work only if data for all keys is an Object.
* Arrays will also be returned but wrappen in a object.
*
* **Will not work if a key as a String value.**
*
* @param {Array} keys
*/
getMultipleItemsAsync<T extends object>(
keys: Array<string>
): Promise<Array<T>>;
clearStore(): boolean | undefined;
/**
* Remove an item from storage for a given key.
*
* @param {String} key
*/
removeItem(key: string): boolean | undefined;
// NON ASYNC CALLS
/**
* Set a string value to storag for a given key.
*
* @param {String} key
* @param {String} value
* @param {Callback<boolean>} callback
*/
setString(key: string, value: string, callback?: Callback<boolean>): boolean | undefined;
/**
* Get a string value for a given key.
* @param {String} key
* @param {Callback<string>} callback
*/
getString(key: string, callback?: Callback<string>): string | null | undefined;
/**
* Set a number value to storage for a given key.
*
* @param {String} key
* @param {number} value
* @param {Callback<boolean>} callback
*/
setInt(key: string, value: number, callback?: Callback<boolean>): boolean | undefined;
/**
* Get a number value for a given key
* @param {String} key
* @param {Callback<number>} callback
*/
getInt(key: string, callback?: Callback<number>): number | null | undefined;
/**
* Set a boolean value to storag for a given key.
*
* @param {String} key
* @param {boolean} value
* @param {Callback<boolean>} callback
*/
setBool(key: string, value: boolean, callback?: Callback<boolean>): boolean | undefined;
/**
* Get a boolean value for a given key.
* @param {String} key
* @param {Callback<boolean>} callback
*/
getBool(key: string, callback?: Callback<boolean>): boolean | null | undefined;
/**
* Set an Object to storage for a given key.
*
* @param {String} key
* @param {Object} value
* @param {Callback<boolean>} callback
*/
setMap(key: string, value: object, callback?: Callback<boolean>):boolean | undefined;
/**
* Get an Object from storage for a given key.
* @param {String} key
* @param {Callback<object>} callback
*/
getMap<T extends object>(key: string, callback?: Callback<T>): T | null | undefined;
/**
* Set an array to the db.
* @param {String} key
* @param {Array} array
* @param {Callback<boolean>} callback
*/
setArray(
key: string,
value: Array<any>,
callback?: Callback<boolean>
): boolean | undefined;
/**
* get an array from the storage for give key.
* @param {String} key
* @param {Array<any>} callback
*/
getArray<T extends any>(
key: string,
callback?: Callback<Array<T>>
): Array<T> | null | undefined;
/**
* Retrieve multiple Objects for a given array of keys. Currently will work only if data for all keys is an Object.
* Arrays will also be returned but wrappen in a object.
*
* **Will not work if a key as a String value.**
*
* @param {Array} keys
* @param {Array<object>} callback
*/
getMultipleItems<T extends object>(
keys: Array<string>,
callback?: Callback<Array<T>>
): Array<T>;
/**
*
* Get all MMKV Instance IDs.
*
*/
getAllMMKVInstanceIDs(): string[];
/**
*
* Get all MMKV Instance IDs that are currently loaded
*
*/
getCurrentMMKVInstanceIDs(): Record<string, boolean>;
encryption: encryption;
indexer: indexer;
}
class indexer {
/**
* Get all keys from storage.
*
*/
getKeys(): Promise<Array<string>>;
/**
* Check if a key exists in storage.
*
* @param {String} key
*/
hasKey(key: string): Promise<boolean>;
strings: {
/**
* Get all keys from strings index;
*
*/
getKeys(): Promise<Array<string>>;
/**
* Check if a key exists in strings index;
*
* @param {String} key
*/
hasKey(key: string): Promise<boolean>;
/**
* Get all strings in the strings index
*
*/
getAll(): Promise<Array<[]>>;
};
numbers: {
/**
* Get all keys from numbers index;
*
*/
getKeys(): Promise<Array<string>>;
/**
* Check if a key exists in numbers index;
*
* @param {String} key
*/
hasKey(key: string): Promise<boolean>;
/**
* Get all numbers in the numbers index;
*
*/
getAll(): Promise<Array<[]>>;
};
booleans: {
/**
* Get all keys from booleans index
*
*/
getKeys(): Promise<Array<string>>;
/**
* Check if a key exists in booleans index
*
* @param {String} key
*/
hasKey(key: string): Promise<boolean>;
/**
* Get all booleans in the booleans index
*
*/
getAll(): Promise<Array<[]>>;
};
maps: {
/**
* Get all keys from maps index
*
*/
getKeys(): Promise<Array<string>>;
/**
* Check if a key exists in maps index
*
* @param {String} key
*/
hasKey(key: string): Promise<boolean>;
/**
* Get all items in the maps index
*
*/
getAll(): Promise<Array<[]>>;
};
arrays: {
/**
* Get all keys from array index
*
*/
getKeys(): Promise<Array<string>>;
/**
* Check if a key exists in array index
*
* @param {String} key
*/
hasKey(key: string): Promise<boolean>;
/**
* Get all arrays in the array index
*
*/
getAll(): Promise<Array<[]>>;
};
}
class encryption {
/**
* You can encrypt an MMKV instance anytime, even after it is created.
*
* Calling this without a key will generate a key itself & store it in secure storage.
* If no parameters are provided, a key is generated and securely stored in the storage with the default alias for later use.
*
* @param {string} key; Provide a custom key to encrypt the storage.
* @param {boolean} secureKeyStorage Store the key in secure storage.
* @param {string} alias Provide a custom alias to store the key with in secure storage
* @param {ACCESSIBLE} accessibleMode Set accessible mode for secure storage on ios devices
* @returns An object with alias and key
*/
encrypt(
key: string,
secureKeyStorage: boolean,
alias: string,
accessibleMode: ACCESSIBLE
): Promise<boolean>;
/**
* You can decrypt an encrypted MMKV instance anytime, even after it is created.
* Decrypting the storage will delete the key you encrypted it with
*
*/
decrypt(): Promise<boolean>;
/**
* Change the encryption key incase the old one has been compromised.
* @param {string} key; Provide a custom key to encrypt the storage.
* @param {boolean} secureKeyStorage Store the key in secure storage.
* @param {string} alias Provide a custom alias to store the key with in secure storage
* @param {ACCESSIBLE} accessibleMode Set accessible mode for secure storage on ios devices
*/
changeEncryptionKey(
key: string,
secureKeyStorage: boolean,
alias: string,
accessibleMode: ACCESSIBLE
): Promise<boolean>;
}
export class Loader {
/**
* Load MMKV with the specified ID. If instance does not exist, a new instance will be created.
* @param {String} id
*/
withInstanceID(id: string): this;
/**
* Encrypt MMKV Instance and store the creditials in secured storage for later use.
* The key for encryption is automatically generated and the default alias for key storage is 'com.MMKV.ammarahmed' which is converted to HEX for usage.
*
* Requires an ID to be specified.
*
*/
withEncryption(): this;
/**
* Set accessible mode for secure storage on ios devices
*
* @param accessible MMKVStorage.ACCESSIBLE
*/
setAccessibleIOS(accessible: ACCESSIBLE): this;
/**
* Provide a custom key to encrypt the storage. Use this if you dont want to generate the key automatically.
* You must call withEncryption() to use this.
* To store your key for later use call withSecureKeyStorage() too.
*
* @param {string} key the key to encrypt the storage with
* @param {boolean} secureKeyStorage Should the key be stored securely.
* @param {string} alias Provide an alias for key storage. Default alias is aliasPrefix + instanceID
*/
encryptWithCustomKey(
key: string,
secureKeyStorage: boolean,
alias: string
): this;
/**
* Set the processing mode for storage.
*
* Will recieve the following values.
* MMKV.MULTI_PROCESS
* MMKV.SINGLE_PROCESS
*
* @param {number} mode Set processing mode for storage
*/
setProcessingMode(mode: number): this;
/**
* Finally after setting all the options, call this to create the instance.
*
*/
initialize(): API;
}
}