@tanstack/table-core
Version:
Headless UI for building powerful tables & datagrids for TS/JS.
13 lines (12 loc) • 320 B
JavaScript
//#region src/helpers/tableOptions.ts
/**
* Runtime implementation for `tableOptions`.
*
* The helper returns the same object it receives; all value comes from the
* overloads preserving table option inference at compile time.
*/
function tableOptions(options) {
return options;
}
//#endregion
export { tableOptions };