@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 316 B
JavaScript
export const isScopeColumnIds = (scope) => {
return 'ColumnIds' in scope;
};
export const isScopeColumnTypes = (scope) => {
return 'ColumnTypes' in scope;
};
export const isScopeDataTypes = (scope) => {
return 'DataTypes' in scope;
};
export const isScopeAll = (scope) => {
return 'All' in scope;
};