/// /// StorageBackend.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.sensitiveinfo import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "StorageBackend". */ @DoNotStrip @Keep enum class StorageBackend(@DoNotStrip @Keep val value: Int) { KEYCHAIN(0), ANDROIDKEYSTORE(1), ENCRYPTEDSHAREDPREFERENCES(2); companion object }