@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
19 lines • 754 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function isMappingHeaderMeasureItem(header) {
return header.measureHeaderItem !== undefined;
}
exports.isMappingHeaderMeasureItem = isMappingHeaderMeasureItem;
function isMappingHeaderAttribute(header) {
return header.attributeHeader !== undefined;
}
exports.isMappingHeaderAttribute = isMappingHeaderAttribute;
function isMappingHeaderAttributeItem(header) {
return header.attributeHeaderItem !== undefined;
}
exports.isMappingHeaderAttributeItem = isMappingHeaderAttributeItem;
function isMappingHeaderTotal(header) {
return header.totalHeaderItem !== undefined;
}
exports.isMappingHeaderTotal = isMappingHeaderTotal;
//# sourceMappingURL=MappingHeader.js.map