# z.AbiItem.Type

## Imports

```ts
import { z } from 'ox/zod'

z.AbiItem.Type
```

## Definition

```ts
export const Type = z.union([
  z.literal('constructor'),
  z.literal('event'),
  z.literal('error'),
  z.literal('fallback'),
  z.literal('function'),
  z.literal('receive'),
])
```

**Source:** [src/zod/AbiItem.ts](https://github.com/wevm/ox/blob/main/src/zod/AbiItem.ts)
