# EditorParams

> _Since v1.0.0_

Union type of all editor parameter configurations.

Built-in editors use specific param shapes (NumberEditorParams, TextEditorParams, etc.).
Custom editors can use any Record&lt;string, unknown&gt; for their params.

The applicable shape depends on the column type and editor.

```ts
type EditorParams = NumberEditorParams | TextEditorParams | DateEditorParams | SelectEditorParams | Record<string, unknown>
```
