# ArgType

**Kind:** Interface

**Source:** [`atloria-monorepo/libs/parser-core/src/storybook/types.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/parser-core/src/storybook/types.ts#L19)

Arg type definition

## Properties

| Property | Type |
|---|---|
| `name` | `string` |
| `description` | `string` |
| `type` | `{
    name: string;
    required?: boolean;
  }` |
| `defaultValue` | `unknown` |
| `control` | `{
    type: string;
    [key: string]: unknown;
  }` |
| `table` | `{
    type?: { summary: string };
    defaultValue?: { summary: string };
    category?: string;
  }` |
| `options` | `unknown[]` |
