# KeyLocation

`import { KeyLocation } from "destack:input/binding";`

Physical key location.

```ds title="KeyLocation"
export enum KeyLocation {
    Standard = 0,
    Left = 1,
    Right = 2,
    Numpad = 3,
}
```

[language/library/src/input/binding/keyboard.ds:6:15](https://github.com/destack-sh/destack/blob/main/language/library/src/input/binding/keyboard.ds#L6-L15)

## Variants

### `Standard = 0`

Standard key position.

### `Left = 1`

Left-side modifier or duplicate key.

### `Right = 2`

Right-side modifier or duplicate key.

### `Numpad = 3`

Numpad key position.
