mirror of
https://github.com/status-im/react-native-keychain.git
synced 2025-02-22 18:08:11 +00:00
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
|
/**
|
||
|
* Reference: <https://developer.apple.com/library/ios/documentation/Security/Reference/keychainservices/#//apple_ref/doc/constant_group/Search_Attribute_Keys>
|
||
|
* @providesModule KeychainMatchLimitsEnum
|
||
|
*/
|
||
|
'use strict';
|
||
|
|
||
|
var KeychainMatchLimitsEnum = module.exports = {
|
||
|
one: true,
|
||
|
all: true,
|
||
|
};
|