@acontplus/ui-kit
Version:
Framework-agnostic UI kit library providing reusable design assets, SVG icon definitions, button types, select options, and design system elements for consistent user interfaces across any JavaScript framework.
16 lines • 526 B
JavaScript
/**
* Report format enumeration
* Framework-agnostic enum for different report/export formats
*/
export var REPORT_FORMAT;
(function (REPORT_FORMAT) {
REPORT_FORMAT["PDF"] = "pdf";
REPORT_FORMAT["EXCEL"] = "excel";
REPORT_FORMAT["WORD"] = "word";
REPORT_FORMAT["IMAGE"] = "image";
REPORT_FORMAT["XML"] = "xml";
REPORT_FORMAT["CSV"] = "csv";
REPORT_FORMAT["MHTML"] = "mhtml";
REPORT_FORMAT["HTML"] = "html";
})(REPORT_FORMAT || (REPORT_FORMAT = {}));
//# sourceMappingURL=report-format.js.map