type TableOptions<TFeatures, TData> = TableOptions_Core<TFeatures, TData> & ExtractFeatureMapTypes<TFeatures, TableOptions_FeatureMap<TFeatures, TData>> & DebugOptions<TFeatures>;Defined in: types/TableOptions.ts:93
Complete table options for a specific feature set.
Feature options are included only when their feature is present in TFeatures, then custom feature/plugin options and debug options are mixed in.
TFeatures extends TableFeatures
TData extends RowData