/** * Export the widget processes * Export() defined witch function in this file will be registered as YAO PROCESS * The process name is .. * The processes can be used in compile.js and export.js DIRECTLY */ /** * SchemaSave * Save the schema of dyform * @name: dyform..Save * @param {String} instance the instance name * @param {*} payload */ function SchemaSave(instance, payload) { return { instance: instance, payload: payload }; } /** * Export processes */ function Export() { return { Save: "SchemaSave" }; }