Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,10 @@ export type AsyncStorageStatic = {
*
* See https://react-native-async-storage.github.io/async-storage/docs/api#multiremove
*/
multiRemove: (keys: string[], callback?: MultiCallback) => Promise<void>;
multiRemove: (
keys: readonly string[],
callback?: MultiCallback
) => Promise<void>;

/**
* Batch operation to merge in existing and new values for a given set of
Expand Down