type TableHelperOptions<TFeatures> = Omit<TableOptions<TFeatures, any>, "columns" | "data" | "store" | "state" | "initialState"> & object;type TableHelperOptions<TFeatures> = Omit<TableOptions<TFeatures, any>, "columns" | "data" | "store" | "state" | "initialState"> & object;Defined in: helpers/tableHelper.ts:12
Options for creating a table helper to share common options across multiple tables coreColumnsFeature, data, and state are excluded from this type and reserved for only the useTable/createTable functions
_features: TFeatures;_features: TFeatures;TFeatures extends TableFeatures