/**
* @namespace qui.tables
*/
/**
* @alias qui.tables.TABLE_CELL_ALIGN_LEFT
*/
export const TABLE_CELL_ALIGN_LEFT = 'left'
/**
* @alias qui.tables.TABLE_CELL_ALIGN_CENTER
*/
export const TABLE_CELL_ALIGN_CENTER = 'center'
/**
* @alias qui.tables.TABLE_CELL_ALIGN_RIGHT
*/
export const TABLE_CELL_ALIGN_RIGHT = 'right'
/**
* @alias qui.tables.TABLE_CELL_ALIGN_TOP
*/
export const TABLE_CELL_ALIGN_TOP = 'top'
/**
* @alias qui.tables.TABLE_CELL_ALIGN_BOTTOM
*/
export const TABLE_CELL_ALIGN_BOTTOM = 'bottom'
/**
* Table row match function.
* @callback qui.tables.TableRowMatchFunc
* @param {qui.tables.TableRow} row the row to be tested
* @returns {Boolean} `true` if the row matches the condition, `false` otherwise
*/