@revolist/revogrid
Version:
Virtual reactive data grid spreadsheet component - RevoGrid.
18 lines (17 loc) • 403 B
JavaScript
/*!
* Built by Revolist OU ❤️
*/
export * from './dataSource';
export * from './dimension';
export * from './selection';
export * from './vp';
export const rowTypes = ['rowPinStart', 'rgRow', 'rowPinEnd'];
export const columnTypes = [
'colPinStart',
'rgCol',
'colPinEnd',
];
export function isRowType(type) {
return rowTypes.indexOf(type) > -1;
}
//# sourceMappingURL=index.js.map