30 lines
973 B
JavaScript
30 lines
973 B
JavaScript
cordova.define('cordova/plugin_list', function(require, exports, module) {
|
|
module.exports = [
|
|
{
|
|
"file": "plugins/cordova-plugin-nativestorage/www/mainHandle.js",
|
|
"id": "cordova-plugin-nativestorage.mainHandle",
|
|
"pluginId": "cordova-plugin-nativestorage",
|
|
"clobbers": [
|
|
"NativeStorage"
|
|
]
|
|
},
|
|
{
|
|
"file": "plugins/cordova-plugin-nativestorage/www/LocalStorageHandle.js",
|
|
"id": "cordova-plugin-nativestorage.LocalStorageHandle",
|
|
"pluginId": "cordova-plugin-nativestorage"
|
|
},
|
|
{
|
|
"file": "plugins/cordova-plugin-nativestorage/www/NativeStorageError.js",
|
|
"id": "cordova-plugin-nativestorage.NativeStorageError",
|
|
"pluginId": "cordova-plugin-nativestorage"
|
|
}
|
|
];
|
|
module.exports.metadata =
|
|
// TOP OF METADATA
|
|
{
|
|
"cordova-plugin-whitelist": "1.3.5",
|
|
"cordova-plugin-webpack": "1.0.5",
|
|
"cordova-plugin-nativestorage": "2.3.2"
|
|
}
|
|
// BOTTOM OF METADATA
|
|
}); |