# useTypeDefault

> _Since v0.1.0_

Composable to get a specific type's default configuration.

```ts
useTypeDefault(typeName: string): TypeDefault<TRow, TValue> | undefined
```

## Parameters

| Name | Type | Description |
| ---- | ---- | ----------- |
| `typeName` | <code>string</code> | The type name to look up |

#### Example

```vue
<script setup>
import { useTypeDefault } from '@toolbox-web/grid-vue';

const countryDefault = useTypeDefault('country');
</script>
```
