> For AI agents: the complete documentation index is available at /byethrow/ja/llms.txt, the full documentation bundle is available at /byethrow/ja/llms-full.txt.

# Type Alias: Success\<T>

> **Success**\<`T`> = `object`

Represents a successful result.

## Example

```ts
import { Result } from '@praha/byethrow';

const success: Result.Success<number> = {
  type: 'Success',
  value: 42,
};
```

## Type Parameters

### T

`T`

The type of the successful value.

## Properties

### type

> `readonly` **type**: `"Success"`

***

### value

> `readonly` **value**: `T`
