# GridTypeProps

> _Since v2.0.0_

Props for the GridType component.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `name` | <code>string</code> | Type name that columns reference via `type`. |
| `params?` | <code>Record&lt;string, string &#124; number &#124; boolean&gt;</code> | Optional params surfaced as `typeDefault.*` in templates. |
| `children?` | <code>(ctx: <a href="/grid/api/core/interfaces/cellrendercontext/">CellRenderContext</a>&lt;TRow, TValue&gt;) =&gt; ReactNode</code> | Custom type-level cell renderer. |
| `editor?` | <code>(ctx: <a href="/grid/api/core/interfaces/columneditorcontext/">ColumnEditorContext</a>&lt;TRow, TValue&gt;) =&gt; ReactNode</code> | Custom type-level cell editor. Requires the editing feature/plugin. |
