API Docs for: 0.2.2
Show:

File: src\R.Cordova.js

/**
 * TODO
 */
module.exports = function(R) {
    var Cordova = {
        createPlugin: function createPlugin(storeName, dispatcherName) {
            return R.App.createPlugin({
                displayName: "Cordova",
                installInClient: function installInClient(flux, window) {
                },
                installInServer: function installInServer(flux, req) {
                },
            });
        },
    };

    return Cordova;
};