# StoryEntry

**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#L49)

Individual story entry

## Properties

| Property | Type |
|---|---|
| `id` | `string` |
| `name` | `string` |
| `exportName` | `string` |
| `parameters` | `Record<string, unknown>` |
| `args` | `Record<string, unknown>` |
| `argTypes` | `Record<string, ArgType>` |
| `locStart` | `number` |
| `locEnd` | `number` |
| `meta` | `{
    /** Custom story name */
    storyName?: string;
    /** Width hint */
    width?: number;
    /** Height hint */
    height?: number;
    /** Additional metadata */
    [key: string]: unknown;
  }` |
| `render` | `string` |
