> For the complete documentation index, see [llms.txt](https://range.angular-package.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://range.angular-package.dev/draft/minimum/constructor.md).

# ★ Constructor

## `Minimum()`

Creates the [`Minimum`](/draft/minimum/overview.md) instance of the given primitive [`value`](#value-value).

{% code title="minimum.class.ts" %}

```typescript
constructor(value: Value) {
  super(value);
}
```

{% endcode %}

### `Parameters`

#### `value:`[<mark style="color:green;">`Value`</mark>](/draft/minimum/generic-type-variables.md#minimum-less-than-value-greater-than)

The value of the generic type variable [`Value`](/draft/minimum/generic-type-variables.md#minimum-less-than-value-greater-than) is the primitive value of the new instance.

## Example usage

```typescript
// Example usage.
import { Minimum } from '@angular-package/range';

// Define constant `id`.
const id = 390;

// Returns Minimum {390} of Minimum<390>.
new Minimum(id);
```
