# createCoreRowModel # Function: createCoreRowModel() ```ts function createCoreRowModel(): (table) => () => RowModel; ``` Defined in: [core/row-models/createCoreRowModel.ts:10](https://github.com/TanStack/table/blob/main/packages/table-core/src/core/row-models/createCoreRowModel.ts#L10) ## Type Parameters ### TFeatures `TFeatures` *extends* [`TableFeatures`](../interfaces/TableFeatures.md) ### TData `TData` *extends* [`RowData`](../type-aliases/RowData.md) ## Returns ```ts (table): () => RowModel; ``` ### Parameters #### table [`Table`](../type-aliases/Table.md)\<`TFeatures`, `TData`\> ### Returns ```ts (): RowModel; ``` #### Returns [`RowModel`](../interfaces/RowModel.md)\<`TFeatures`, `TData`\>