react-native-unit-components
Version:
Unit React Native components
15 lines • 592 B
JavaScript
import { UNVersioningStrategyType } from '../types/shared';
import { UNComponentsSnapshotProtectionStrategy } from '../types/shared/securitySettings';
const WEB_SDK_RECOMMENDED_STRATEGY = {
type: UNVersioningStrategyType.upToNextMinor,
major: 2,
minor: 2
};
const DEFAULT_SECURITY_SETTINGS = {
snapshotProtectionStrategy: UNComponentsSnapshotProtectionStrategy.FullProtection
};
export const UNComponentsSDKConstants = {
webSDKRecommendedStrategy: WEB_SDK_RECOMMENDED_STRATEGY,
securitySettings: DEFAULT_SECURITY_SETTINGS
};
//# sourceMappingURL=UnitComponentsSdk.constants.js.map