API Docs for: 0.2.2
Show:

File: src\R.XWindow.js

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

    return XWindow;
};