# ★ Constructor

## `Greater()`

Creates the [`Greater`](https://range.angular-package.dev/draft/greater) instance with the given [`value`](#undefined).

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

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

{% endcode %}

### `Parameters`

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

The value of generic type variable [`Value`](https://range.angular-package.dev/draft/generic-type-variables#greater-less-than-value-greater-than) to set with a new instance.

## Example usage

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

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

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