Source: serverCommandID.js

/**
 * @file This file contains the `ServerCommandID` enumeration containing some command / message
 * IDs of server or browser messages which have to be processed inside the module.
 * @author Thorsten Kummerow <thorsten@textcontrol.com>
 */
'use strict';

/**
 * An enumaration containing some command / message IDs of browser and server messages which
 * have to be processed by the module itself (e. g. the "Close" command).
 */
var ServerCommandID = Object.freeze({
   None: 0,
   Image: 1,
   Close: 4,
   OpenFile: 15,
   PrintToPDF: 22,
   AppendDocumentFile: 177
}); // ServerCommandID

module.exports = ServerCommandID;