TypesExportedSettings.enum.js
TypesExportedSettings enum is used for identifying types of exported settings in the system. It contains CSV and XLS types. These types are used when exporting/importing table data to/from an .xls or .csv file
js
import { TypesExportedSettings } from '@webitel/ui-sdk/enums';js
export default Object.freeze({
CSV: 'csv',
XLSX: 'xlsx',
});