import { TableOptions } from '@tanstack/react-table'; import { DefaultType } from '../types'; import { OptionsExtension } from './types'; export function withMeta( meta: Record ): OptionsExtension { return function extendOptions(options: TableOptions) { return { ...options, meta: { ...options.meta, ...meta, }, }; }; }