excel4node
Version:
Library to create Formatted Excel Files.
39 lines (36 loc) • 1.46 kB
JavaScript
;
/* REFERENCES
http://www.ecma-international.org/news/TC45_current_work/OpenXML%20White%20Paper.pdf
http://www.ecma-international.org/publications/standards/Ecma-376.htm
http://www.openoffice.org/sc/excelfileformat.pdf
http://officeopenxml.com/anatomyofOOXML-xlsx.php
*/
/*
Code references specifications sections from ECMA-376 2nd edition doc
ECMA-376, Second Edition, Part 1 - Fundamentals And Markup Language Reference.pdf
found in ECMA-376 2nd edition Part 1 download at http://www.ecma-international.org/publications/standards/Ecma-376.htm
Sections are referenced in code comments with §
*/
var utils = require('./lib/utils.js');
var types = require('./lib/types/index.js');
module.exports = {
Workbook: require('./lib/workbook/index.js'),
getExcelRowCol: utils.getExcelRowCol,
getExcelAlpha: utils.getExcelAlpha,
getExcelTS: utils.getExcelTS,
getExcelCellRef: utils.getExcelCellRef,
PaperSize: types.paperSize,
CellComment: types.cellComments,
PrintError: types.printError,
PageOrder: types.pageOrder,
Orientation: types.orientation,
Pane: types.pane,
PaneState: types.paneState,
HorizontalAlignment: types.alignment.horizontal,
VerticalAlignment: types.alignment.vertical,
BorderStyle: types.borderStyle,
PresetColorVal: types.excelColor,
PatternType: types.fillPattern,
PositiveUniversalMeasure: types.positiveUniversalMeasure
};
//# sourceMappingURL=index.js.map