react-native-cloud-storage
Version:
☁️ Save to & read from iCloud and Google Drive using React Native
13 lines (12 loc) • 390 B
text/typescript
export type RNCloudStorageConfigPluginOptions =
| {
/**
* The iCloud container environment to use. Defaults to 'Production'.
*/
iCloudContainerEnvironment?: 'Production' | 'Development';
/**
* The iCloud container identifier to use. Defaults to `iCloud.{appBundleIdentifier}`
*/
iCloudContainerIdentifier?: string;
}
| undefined;